import React from 'react';
type MenuTab = {
    label: string;
    value: string;
};
interface MenuTabsProps {
    tabs: MenuTab[];
    defaultTab?: string;
    onChangeValue?: (value: string) => void;
}
export declare const MenuTabs: React.FC<MenuTabsProps>;
export {};
