import { Theme } from '../../theme'; import { TableDataType, TableLoading, TableProps, TablePropsCompiled, TableStyle } from './Table.types'; export declare const table: import("../../utils/className").ClassBaseBuilder; export declare function styleProcessor(props: { data: TableProps['data']; columns: TableProps['columns']; customColumns: TableProps['customColumns']; actions: TableProps['actions']; loading: Required>['loading']; selectable: Required>['selectable']; style: Required>['style']; theme: Theme; }): TableStyle; export declare function loadingProcessor(loading: TablePropsCompiled['loading']): TableLoading; export declare function mapTableStyleToCSSVars(style: TableStyle): React.CSSProperties; export declare function evaluate(data: T, handler?: H): any; declare global { interface Array { orderByArray: (array: string[]) => T[]; } } export declare function config(): void;