import type { KvListFieldSlotProps, KvListKeyProps, KvListType, KvListValueProps, KvListWorkingItem } from './types'; type __VLS_Props = { item: KvListWorkingItem; index: number; type?: KvListType; keyProps?: KvListKeyProps; valueProps?: KvListValueProps; disabled?: boolean; }; type __VLS_Slots = { key?: (props: KvListFieldSlotProps) => unknown; value?: (props: KvListFieldSlotProps) => unknown; actions?: () => unknown; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { update: (item: KvListWorkingItem) => any; remove: () => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onUpdate?: ((item: KvListWorkingItem) => any) | undefined; onRemove?: (() => any) | undefined; }>, {}, {}, {}, {}, 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; }; };