import { ConfirmationPopoverButtonProps } from "../popover/ConfirmationPopoverButton"; export declare const ReactTableConfig: any; export declare const customColumnsDefaults: { minResizeWidth: number; }; export declare const tableStyles: { cellClassName: string; }; declare type Accessor = string | ((value: any) => string); export declare const columnFactory: { simple: (Header: string, accessor: Accessor, id: string, className?: string) => { Header: string; accessor: Accessor; id: string; className: string; minResizeWidth: number; }; date: (accessor?: Accessor) => { Header: string; accessor: Accessor; className: string; Cell: (props: any) => any; minResizeWidth: number; }; time: (accessor?: Accessor) => { Header: string; accessor: Accessor; className: string; Cell: (props: any) => any; minResizeWidth: number; }; cell: (Header: string, Cell: (props: any) => any) => { Header: string; className: string; Cell: (props: any) => any; minResizeWidth: number; }; removeButton: (popoverProps: ConfirmationPopoverButtonProps, id?: string) => any; }; export {};