import { VueNode } from "../_util/type.js"; import { ArgsClassNamesType, NoticeType } from "./interface.js"; import { CSSProperties, SlotsType } from "vue"; //#region src/message/PureList.d.ts interface PureListItem { key: string | number; content?: VueNode; type: NoticeType; duration?: number | false; } interface PureListProps { prefixCls?: string; items: PureListItem[]; classes?: ArgsClassNamesType; style?: CSSProperties; } interface PureListSlots { default?: () => any; } /** * @private Internal component. Do not use in production. * Mirrors ant-design 6.4 `message._InternalListDoNotUseOrYouWillBeFired`. */ declare const PureList: import("vue").DefineSetupFnComponent, SlotsType, PureListProps & { [x: `on${Capitalize}`]: ((...args: unknown[]) => any) | undefined; }, import("vue").PublicProps>; //#endregion export { PureListItem, PureListProps, PureListSlots, PureList as default };