import type { ExtractPropTypes, PropType } from 'vue'; import type { TableColumnProps } from '../table-column/table-column.api'; export declare const tableColumnEditorProps: { modelValue: { type: PropType; default: () => never[]; }; virtualRef: { type: null; }; }; export type TableColumnEditorProps = ExtractPropTypes; export declare const tableColumnEditorEmits: { 'update:modelValue': (value: TableColumnProps[]) => boolean; reset: () => boolean; }; export type TableColumnEditorEmits = typeof tableColumnEditorEmits;