import type { Column } from "./col"; import { TBodyProps } from "./tbody"; export interface TableProps extends TBodyProps { columns: Column[]; dataSource?: RecordType[] | null; /** * @description loading state * @default false */ loading?: boolean; className?: string; headerClassName?: string; showMaskElement?: boolean; loadMore?: () => void; id?: string; } export declare const Table: (props: TableProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=table.d.ts.map