import type { TableColumn, TableData, TableProps } from '~/types'; declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { actionsText: string; }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { sort: (column: TableColumn, index: number) => void; "update:data": (data: TableData[]) => void; "update:selected-rows": (data: TableData[]) => void; check: (indexes: number[]) => void; "update:cell": (data: { row: unknown; accessor: string; }) => void; }, string, import("vue").PublicProps, Readonly, { actionsText: string; }>>> & { "onUpdate:selected-rows"?: ((data: TableData[]) => any) | undefined; onSort?: ((column: TableColumn, index: number) => any) | undefined; onCheck?: ((indexes: number[]) => any) | undefined; "onUpdate:data"?: ((data: TableData[]) => any) | undefined; "onUpdate:cell"?: ((data: { row: unknown; accessor: string; }) => any) | undefined; }, { actionsText: string; }, {}>; export default _default; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};