import type { TableEmitFn, TableProps } from './../table';
export declare const useTable: (props: TableProps, emit: TableEmitFn) => {
    tableKls: import("vue").ComputedRef<string[]>;
    colspan: import("vue").Ref<number>;
    isMultipleSelected: import("vue").ComputedRef<boolean>;
    selected: (val: any) => void;
    theadRef: import("vue").Ref<HTMLElement | undefined>;
};
