import React from 'react';
export declare type TabsProps = {
    children: React.ReactNode;
    fullWidth?: boolean;
};
export declare type TabProps = {
    label: string;
    component: React.ReactNode;
    disabled?: boolean;
    hideOnSwitch?: boolean;
    componentProps?: {
        [key: string]: any;
    };
};
export declare type TabPanelProps = {
    children?: React.ReactNode;
    dir?: string;
    index: any;
    value: any;
    hideOnSwitch?: boolean;
};
