import React, { ReactNode } from 'react';
import { ConfigUrlApply, KeyParams } from '../Func/PHXUrlApply/type';
export type TabItem = {
    name: ReactNode;
    count: number;
    value: string;
    key?: KeyParams;
    listKeyReset?: Array<KeyParams>;
};
type Props = {
    tabs: Array<TabItem>;
    activeTab: string;
    loading?: boolean;
    onChange(value: string): void;
    className?: string;
    configUrlApply?: ConfigUrlApply;
    columns?: number;
};
export declare const PHXReportButtonTab: ({ activeTab, className, columns, configUrlApply, loading, onChange, tabs, }: Props) => React.JSX.Element;
export {};
