export interface TabContextProps {
    activeKey: string | number;
    change: (key: string | number) => void;
    fullWidth: boolean;
    children?: any;
}
