import React from 'react'; import { TableHeaderProps } from './TableHeader'; import { TableRowProps, TableAccessor } from './TableRow'; interface Props { header: TableHeaderProps; rows?: TableRowProps[]; accessors?: TableAccessor[]; nested?: boolean; } export declare const Table: React.FunctionComponent; export {};