PurePanel.d.ts 1.4 KB

12345678910111213141516171819202122
  1. import type { NoticeProps } from '../vc-notification/Notice';
  2. import type { NoticeType } from './interface';
  3. import type { VueNode } from '../_util/type';
  4. export declare const TypeIcon: {
  5. info: import("vue/jsx-runtime").JSX.Element;
  6. success: import("vue/jsx-runtime").JSX.Element;
  7. error: import("vue/jsx-runtime").JSX.Element;
  8. warning: import("vue/jsx-runtime").JSX.Element;
  9. loading: import("vue/jsx-runtime").JSX.Element;
  10. };
  11. export interface PureContentProps {
  12. prefixCls: string;
  13. type?: NoticeType;
  14. icon?: VueNode;
  15. }
  16. export declare const PureContent: import("vue").DefineComponent<PureContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PureContentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
  17. export interface PurePanelProps extends Omit<NoticeProps, 'prefixCls' | 'eventKey'>, Omit<PureContentProps, 'prefixCls'> {
  18. prefixCls?: string;
  19. }
  20. /** @private Internal Component. Do not use in your production. */
  21. declare const _default: import("vue").DefineComponent<PurePanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PurePanelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
  22. export default _default;