import { CustomColumnProps, DragableColumn } from './CustomColumn.vue.d'; import { TableColumn } from '../datatable/DataTable.vue.d'; declare let __VLS_typeProps: CustomColumnProps & { savedColumns: DragableColumn[]; }; type __VLS_PublicProps = { modelValue?: TableColumn[]; } & typeof __VLS_typeProps; declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, { setColumnVisibilityConfig: () => Promise; resetToDefault: () => void; updateVisibleColumnsModel: () => void; }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (modelValue: TableColumn[]) => void; }, string, import('vue').PublicProps, Readonly>> & { "onUpdate:modelValue"?: (modelValue: TableColumn[]) => any; }, {}, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; };