import React from 'react'; export interface TableProps { children?: React.ReactNode; shrinkLastColumn?: boolean; } export declare const Table: (props: TableProps) => JSX.Element; export interface TableCellProps { children?: React.ReactNode; copy?: boolean; isCSS?: boolean; } export declare const TableCell: ({ children, isCSS, copy, ...props }: TableCellProps) => JSX.Element; export interface TableHeadLayoutProps { headers?: Array; } export interface TableLayoutProps { rows?: Array>; headers?: Array; copy?: boolean; shrinkLastColumn?: boolean; isCSS?: boolean; } export declare const TableLayout: ({ headers, shrinkLastColumn, rows, isCSS, copy, }: TableLayoutProps) => JSX.Element; export default Table;