index.d.ts 768 B

12345678910111213141516171819
  1. import type { FullToken } from '../../theme/internal';
  2. /** Component only token. Which will handle additional calculation of alias token */
  3. export interface ComponentToken {
  4. zIndexPopup: number;
  5. width: number;
  6. }
  7. export interface NotificationToken extends FullToken<'Notification'> {
  8. notificationBg: string;
  9. notificationPaddingVertical: number;
  10. notificationPaddingHorizontal: number;
  11. notificationPadding: string;
  12. notificationMarginBottom: number;
  13. notificationMarginEdge: number;
  14. animationMaxHeight: number;
  15. notificationIconSize: number;
  16. notificationCloseButtonSize: number;
  17. }
  18. declare const _default: (_prefixCls?: import("vue").Ref<string>) => import("../../theme/internal").UseComponentStyleResult;
  19. export default _default;