import { TableProps as AntTableProps } from 'antd'; import { ColumnProps } from './column'; import { usePagination } from './pagination/usePagination'; export interface TableProps extends AntTableProps { transparentHeader?: boolean; internalScroll?: boolean; } declare const Table: { ({ className, children, expandable, rowSelection, size, pagination, loading, transparentHeader, internalScroll, ...rest }: TableProps): import("react/jsx-runtime").JSX.Element; Cell: { ({ children }: import("./components/cell").TableCellProps): any; Currency: ({ value, ...rest }: import("./components/cell/currencyCell").TableCellProps) => import("react/jsx-runtime").JSX.Element; Date: ({ value, ...rest }: import("./components/cell/dateCell").TableCellProps) => import("react/jsx-runtime").JSX.Element; StatusCell: ({ value, ...rest }: import("./components/cell/status").TableCellProps) => import("react/jsx-runtime").JSX.Element; }; Column: (_props: ColumnProps) => import("react/jsx-runtime").JSX.Element; Currency: ({ value, ...rest }: import("./components/cell/currencyCell").TableCellProps) => import("react/jsx-runtime").JSX.Element; Date: ({ value, ...rest }: import("./components/cell/dateCell").TableCellProps) => import("react/jsx-runtime").JSX.Element; Status: ({ value, ...rest }: import("./components/cell/status").TableCellProps) => import("react/jsx-runtime").JSX.Element; usePagination: typeof usePagination; }; export { Table };