import type { VNodeChild } from "vue"; import type { XyListItemSlots } from "./types"; interface ListItemProps { actions?: VNodeChild[]; classNames?: unknown; extra?: VNodeChild | string; styles?: unknown; } type __VLS_Slots = XyListItemSlots; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { classNames: undefined; styles: undefined; actions: VNodeChild[]; extra: 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; }; };