import React, { MouseEvent } from 'react'; import { ButtonProps } from 'grommet'; import { ColorType } from 'grommet/utils'; export declare const StyledTableComponent: any; export declare const StyledTableBodyComponent: any; export declare const StyledTHeadComponent: any; export declare const StyledResizerComponent: any; export interface ThComponentProps { sort?: string | boolean; resizable: boolean; sortable: boolean; hidden: boolean; expander?: ButtonProps; pivot: string | boolean; toggleSort?: (event: MouseEvent) => void; children: React.ReactNode; CellTextComponent?: React.ElementType; style: object; } export declare const StyledThComponent: any; export declare const StyledTrGroupComponent: any; export interface ITrComponentProps { hover?: { background: ColorType; color: ColorType; }; } export declare const StyledTrComponent: any; export declare const StyledTdComponent: any; export declare const StyledExpander: any; export declare const StyledTfootComponent: any;