/// import { type TabLineRootProps, type TabSolidRootProps } from './@common'; import { type DefaultTabContextValue } from './Tab.context'; export type TabOwnProps = { disabled?: boolean; value?: Value; defaultValue?: Value; onChange?: (value: Value) => void; } & (({ variant?: 'line'; } & TabLineRootProps) | ({ variant?: 'solid'; } & TabSolidRootProps)); export type TabProps = TabOwnProps; type TabComponent = (props: TabProps) => React.ReactNode; export declare const Tab: TabComponent; export {}; //# sourceMappingURL=Tab.d.ts.map