import * as React from 'react';
import { TableColumn, TableData, TableRowAction } from "./TableComponent.types";
export interface OwnProps {
    columns: Array<TableColumn>;
    refreshMethod?: () => void;
    tableActions?: Array<TableRowAction>;
    tableData?: TableData;
    title: string;
    hideRefreshButton?: boolean;
    hideExportButton?: boolean;
}
export declare const TableTopActions: React.ComponentType<OwnProps>;
