import React from 'react';
import { TabsProps } from '@mui/material/Tabs';
import { ColorVariant } from '@/types';
interface StyledTabProps {
    label: string;
    color: ColorVariant;
}
export declare const NormaTabs: React.ComponentType<TabsProps & {
    color: ColorVariant;
}>;
export declare const NormaTab: React.ComponentType<StyledTabProps>;
export {};
