export interface TableProps {
    id?: string;
    head?: {
        rows?: {
            rowSpanOffset?: boolean;
            cells?: {
                heading: boolean;
                colspan?: string;
                rowspan?: string;
                text: string;
                key?: string;
            }[];
            key?: string;
        }[];
    };
    bodies?: {
        rows?: {
            rowSpanOffset?: boolean;
            cells?: {
                heading: boolean;
                colspan?: string;
                rowspan?: string;
                text: string;
                key?: string;
            }[];
            key?: string;
        }[];
        key?: string;
    }[];
}
declare const Table: {
    (table: TableProps): any;
    defaultProps: {};
};
export default Table;
