import { TdBaseTableProps } from '../table/type';
import { PropType } from 'vue';
declare const _default: {
    bordered: BooleanConstructor;
    cellEmptyContent: {
        type: PropType<TdBaseTableProps['cellEmptyContent']>;
    };
    columns: {
        type: PropType<TdBaseTableProps['columns']>;
        default: () => TdBaseTableProps['columns'];
    };
    data: {
        type: PropType<TdBaseTableProps['data']>;
        default: () => TdBaseTableProps['data'];
    };
    empty: {
        type: PropType<TdBaseTableProps['empty']>;
        default: TdBaseTableProps['empty'];
    };
    fixedRows: {
        type: PropType<TdBaseTableProps['fixedRows']>;
    };
    footerSummary: {
        type: PropType<TdBaseTableProps['footerSummary']>;
    };
    height: {
        type: PropType<TdBaseTableProps['height']>;
    };
    loading: {
        type: PropType<TdBaseTableProps['loading']>;
        default: TdBaseTableProps['loading'];
    };
    loadingProps: {
        type: PropType<TdBaseTableProps['loadingProps']>;
    };
    maxHeight: {
        type: PropType<TdBaseTableProps['maxHeight']>;
    };
    rowAttributes: {
        type: PropType<TdBaseTableProps['rowAttributes']>;
    };
    rowClassName: {
        type: PropType<TdBaseTableProps['rowClassName']>;
    };
    rowKey: {
        type: StringConstructor;
        default: string;
        required: boolean;
    };
    rowspanAndColspan: {
        type: PropType<TdBaseTableProps['rowspanAndColspan']>;
    };
    showHeader: {
        type: BooleanConstructor;
        default: boolean;
    };
    stripe: BooleanConstructor;
    tableContentWidth: {
        type: StringConstructor;
        default: string;
    };
    tableLayout: {
        type: PropType<TdBaseTableProps['tableLayout']>;
        default: TdBaseTableProps['tableLayout'];
        validator(val: TdBaseTableProps['tableLayout']): boolean;
    };
    verticalAlign: {
        type: PropType<TdBaseTableProps['verticalAlign']>;
        default: TdBaseTableProps['verticalAlign'];
        validator(val: TdBaseTableProps['verticalAlign']): boolean;
    };
    onCellClick: PropType<TdBaseTableProps['onCellClick']>;
    onRowClick: PropType<TdBaseTableProps['onRowClick']>;
    onScroll: PropType<TdBaseTableProps['onScroll']>;
    onScrollToBottom: PropType<TdBaseTableProps['onScrollToBottom']>;
};
export default _default;
