import { ArgsClassNamesType, NoticeType } from "./interface.js"; import * as vue226 from "vue"; import { CSSProperties, SlotsType, VueNode } from "vue"; //#region src/message/PureList.d.ts interface PureListItem { key: string | number; content?: VueNode; type: NoticeType; duration?: number | false; } interface PureListProps { 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: vue226.DefineSetupFnComponent, SlotsType, PureListProps & { [x: `on${Capitalize}`]: ((...args: unknown[]) => any) | undefined; }, vue226.PublicProps>; //#endregion export { PureListItem, PureListProps, PureListSlots, PureList as default };