import type { VNodeChild } from "vue"; import type { XyListItemMetaSlots } from "./types"; interface ListItemMetaProps { avatar?: VNodeChild | string; classNames?: unknown; description?: VNodeChild | string; styles?: unknown; title?: VNodeChild | string; } type __VLS_Slots = XyListItemMetaSlots; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { title: string | number | boolean | import("vue").VNode | import("vue").VNodeArrayChildren | null; classNames: undefined; styles: undefined; description: string | number | boolean | import("vue").VNode | import("vue").VNodeArrayChildren | null; avatar: string | number | boolean | import("vue").VNode | import("vue").VNodeArrayChildren | null; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };