///
import type { TableProps as AntdTableProps } from 'antd/lib/table';
import Column from 'antd/lib/table/Column';
import ColumnGroup from 'antd/lib/table/ColumnGroup';
export declare type TableProps = Omit, 'locale'> & {
storageKey?: string;
enableToolbar?: boolean;
showCellBorders?: boolean;
striped?: boolean;
shadowed?: boolean;
locale?: AntdTableProps['locale'] & {
loadingDescription?: string;
emptyText?: string;
};
refresh?(): void;
};
export declare const Table: {
({ className, locale, bordered, size, storageKey, columns, children, shadowed, striped, showCellBorders, pagination, enableToolbar, refresh, ...rest }: TableProps): JSX.Element;
Column: typeof Column;
ColumnGroup: typeof ColumnGroup;
displayName: string;
};
//# sourceMappingURL=table.d.ts.map