import React, { Component, ReactElement, ReactNode } from 'react';
import { TableQueryBarProps, TableQueryBarHookProps } from '../Table.d';
export declare type TableQueryBarHookCustomProps = object;
export declare type TableQueryBarHook = (props: TableQueryBarHookCustomProps & TableQueryBarHookProps) => ReactNode;
export default class PerformanceTableQueryBar extends Component<TableQueryBarProps> {
    static displayName: string;
    static contextType: React.Context<import("../TableContext").Props>;
    static defaultProps: {
        queryFieldsLimit: number;
    };
    handleQueryReset(): void;
    handleQuery(): any;
    getQueryFields(): ReactElement<any>[];
    renderProfessionalBar(props: TableQueryBarHookProps): JSX.Element;
    renderDynamicFilterBar(props: TableQueryBarHookProps): JSX.Element;
    render(): {} | null | undefined;
}
