import type { PropType } from 'vue'; import type { InternalListItem } from './VList.js'; import type { VListItemSlots } from './VListItem.js'; import type { GenericProps } from '../../util/index.js'; export type VListChildrenSlots = { [K in keyof Omit]: VListItemSlots[K] & { item: T; }; } & { default: never; item: { props: InternalListItem['props'] & { index: number; }; }; divider: { props: InternalListItem['props']; }; subheader: { props: InternalListItem['props']; }; header: { props: InternalListItem['props']; }; }; export declare const makeVListChildrenProps: (defaults?: Defaults | undefined) => { items: unknown extends Defaults["items"] ? PropType[]> : { type: PropType[] : readonly InternalListItem[] | Defaults["items"]>; default: unknown extends Defaults["items"] ? readonly InternalListItem[] : readonly InternalListItem[] | Defaults["items"]; }; returnObject: unknown extends Defaults["returnObject"] ? BooleanConstructor : { type: PropType; default: unknown extends Defaults["returnObject"] ? boolean : boolean | Defaults["returnObject"]; }; }; export declare const VListChildren: { new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{} & {}, () => (import("vue").VNode[] | JSX.Element)[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit, "$children" | "items" | "returnObject" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:header" | "v-slot:item" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slots">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {}, true, {}, import("vue").SlotsType; }) => import("vue").VNode[]; append: (arg: import("./VListItem.js").ListItemSlot & { item: InternalListItem; }) => import("vue").VNode[]; title: (arg: import("./VListItem.js").ListItemTitleSlot & { item: InternalListItem; }) => import("vue").VNode[]; subtitle: (arg: import("./VListItem.js").ListItemSubtitleSlot & { item: InternalListItem; }) => import("vue").VNode[]; default: () => import("vue").VNode[]; item: (arg: { props: InternalListItem['props'] & { index: number; }; }) => import("vue").VNode[]; divider: (arg: { props: InternalListItem['props']; }) => import("vue").VNode[]; subheader: (arg: { props: InternalListItem['props']; }) => import("vue").VNode[]; header: (arg: { props: InternalListItem['props']; }) => import("vue").VNode[]; }>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, {} & {}, () => (import("vue").VNode[] | JSX.Element)[] | undefined, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & import("vue").ComponentOptionsBase<{} & {}, () => (import("vue").VNode[] | JSX.Element)[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Omit, "$children" | "items" | "returnObject" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:header" | "v-slot:item" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slots">, string, {}, {}, string, import("vue").SlotsType; }) => import("vue").VNode[]; append: (arg: import("./VListItem.js").ListItemSlot & { item: InternalListItem; }) => import("vue").VNode[]; title: (arg: import("./VListItem.js").ListItemTitleSlot & { item: InternalListItem; }) => import("vue").VNode[]; subtitle: (arg: import("./VListItem.js").ListItemSubtitleSlot & { item: InternalListItem; }) => import("vue").VNode[]; default: () => import("vue").VNode[]; item: (arg: { props: InternalListItem['props'] & { index: number; }; }) => import("vue").VNode[]; divider: (arg: { props: InternalListItem['props']; }) => import("vue").VNode[]; subheader: (arg: { props: InternalListItem['props']; }) => import("vue").VNode[]; header: (arg: { props: InternalListItem['props']; }) => import("vue").VNode[]; }>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new (props: { items?: readonly T[]; returnObject?: boolean; }, slots: VListChildrenSlots) => GenericProps) & import("../../util/index.js").FilterPropsOptions<{ items: PropType; returnObject: BooleanConstructor; }, import("vue").ExtractPropTypes<{ items: PropType; returnObject: BooleanConstructor; }>>;