/// <reference types="react" />
export interface Props {
    activeType: 'pill' | 'line';
    label: string;
    active?: boolean;
    disabled?: boolean;
}
export declare const Tab: ({ activeType, label, active, disabled, ...props }: Props) => JSX.Element;
