@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
23 lines (22 loc) • 1.45 kB
TypeScript
import type { NoticeProps } from '../vc-notification/Notice';
import type { NoticeType } from './interface';
import type { VueNode } from '../_util/type';
export declare const TypeIcon: {
info: import("vue/jsx-runtime").JSX.Element;
success: import("vue/jsx-runtime").JSX.Element;
error: import("vue/jsx-runtime").JSX.Element;
warning: import("vue/jsx-runtime").JSX.Element;
loading: import("vue/jsx-runtime").JSX.Element;
};
export interface PureContentProps {
prefixCls: string;
type?: NoticeType;
icon?: VueNode;
}
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>;
export interface PurePanelProps extends Omit<NoticeProps, 'prefixCls' | 'eventKey'>, Omit<PureContentProps, 'prefixCls'> {
prefixCls?: string;
}
/** @private Internal Component. Do not use in your production. */
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>;
export default _default;