import * as React from 'react';
import { OwnProps, TableColumn } from './TableComponent.types';
export declare const EMPTY_SELECT_FILTER: {
    value: string;
    text: string;
};
export declare const getFilterValue: (column: TableColumn, value: any) => any;
export declare const getFilterForColumn: (column: TableColumn, style: any, onChange: Function, value: any, t: Function) => any;
export declare const TableComponent: React.ComponentType<OwnProps>;
