/// export declare type TabProps = { label: string; exact?: boolean; active?: boolean; onClick?: (value: string) => void; className?: string; } & ({ path: string; } | { value: string; }); export declare const Tab: (props: TabProps) => JSX.Element;