export interface CustomizeField { /** Unique identifier for the field */ id: string; /** Display label for the field */ label: string; /** Whether the field is visible */ visible: boolean; /** Position/order of the field (0-based index) */ position: number; /** Icon name (Material Symbols) */ icon?: string; /** Whether the field can be hidden (if false, toggle is disabled) */ canHide?: boolean; } export interface FmCustomizeFieldsProps { /** Array of field configurations */ modelValue: CustomizeField[]; /** Title text for the header */ title?: string; /** Placeholder text for search input */ searchPlaceholder?: string; /** Whether to show the close button */ showCloseButton?: boolean; /** Whether to show the search input */ searchable?: boolean; /** Whether to show the "Hide all" / "Show all" toggle button */ showToggleAllButton?: boolean; /** Text for the "Hide all" button */ hideAllText?: string; /** Text for the "Show all" button */ showAllText?: string; /** Text for the "Shown" label */ shownLabel?: string; } declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { showCloseButton: boolean; searchable: boolean; showToggleAllButton: boolean; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: CustomizeField[]) => void; close: () => void; }, string, import("vue").PublicProps, Readonly, { showCloseButton: boolean; searchable: boolean; showToggleAllButton: boolean; }>>> & { "onUpdate:modelValue"?: ((value: CustomizeField[]) => any) | undefined; onClose?: (() => any) | undefined; }, { searchable: boolean; showCloseButton: boolean; showToggleAllButton: boolean; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};