import { default as React } from 'react'; export type TabVariant = 'primary' | 'alert'; export type TabProps = { /** * The content to display as Tab */ children: React.ReactNode; /** * className for the element */ className?: string; }; export declare const Tab: ({ className, children }: TabProps) => React.JSX.Element; //# sourceMappingURL=Tab.d.ts.map