import type { KvListFieldSlotProps, KvListItem, KvListKeyProps, KvListRowActionsSlotProps, KvListType, KvListValueProps } from './types'; type __VLS_Props = { type?: KvListType; keyProps?: KvListKeyProps; valueProps?: KvListValueProps; disabled?: boolean; bulkEditable?: boolean; }; type __VLS_Slots = { 'key'?: (props: KvListFieldSlotProps) => unknown; 'value'?: (props: KvListFieldSlotProps) => unknown; 'toolbar-extra'?: () => unknown; 'row-actions'?: (props: KvListRowActionsSlotProps) => unknown; }; type __VLS_ModelProps = { 'json'?: KvListItem[]; 'bulk'?: string; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:json": (value: KvListItem[]) => any; "update:bulk": (value: string) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:json"?: ((value: KvListItem[]) => any) | undefined; "onUpdate:bulk"?: ((value: string) => 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; }; };