import React, { MouseEvent } from 'react'; import { BoxProps, TextInputProps, ButtonProps, TextProps } from 'grommet'; export declare type IPagingTableRow = object; export declare type IPagingTableFilter = object; export interface IPagingTableDecorators { /** Table styling, all **``** properties are valid */ table?: BoxProps; /** Header cell styling, all **``** properties are valid */ header?: BoxProps; /** Grouped columns header styling, all **``** properties are valid */ headerGroup?: BoxProps; /** Filter row styling, all **``** properties are valid */ filter?: BoxProps; /** Filter input control styling, all **``** properties are valid */ filterInput?: TextInputProps; /** Body styling, all **``** properties are valid */ body?: BoxProps; /** Row of data styling, all **``** properties are valid */ row?: BoxProps; /** Odd row for striped styling, all **``** properties are valid */ rowOdd?: BoxProps; /** Even row for striped styling, all **``** properties are valid */ rowEven?: BoxProps; /** Cell of data styling, all **``** properties are valid */ cell?: BoxProps & TextProps; /** Footer row styling, all **``** properties are valid */ footer?: BoxProps; /** Pagination box styling, all **``** properties are valid */ pagination?: BoxProps; /** Expander button styling, all **`