import React from 'react'; declare type TableProps = { columns: { title?: React.ReactNode; dataIndex: string; }[]; dataSource?: T[]; expandable?: boolean; }; export declare function Table({ columns, ...props }: TableProps): JSX.Element; export {};