import type { AdvancedSortItem, SortField } from './types'; export interface FmAdvancedSortProps { /** The array of items to sort */ modelValue: AdvancedSortItem[]; /** Fields that can be used for sorting */ sortFields?: SortField[]; /** Label for the left column */ leftColumnLabel?: string; /** Label for the right column */ rightColumnLabel?: string; /** Height of the component */ height?: string; /** Enable item search */ searchable?: boolean; } declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { sortFields: () => never[]; leftColumnLabel: string; rightColumnLabel: string; height: string; searchable: boolean; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: AdvancedSortItem[]) => void; }, string, import("vue").PublicProps, Readonly, { sortFields: () => never[]; leftColumnLabel: string; rightColumnLabel: string; height: string; searchable: boolean; }>>> & { "onUpdate:modelValue"?: ((value: AdvancedSortItem[]) => any) | undefined; }, { height: string; searchable: boolean; sortFields: SortField[]; leftColumnLabel: string; rightColumnLabel: string; }, {}>; 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]; } & {};