import React from 'react'; export interface TyTabProps extends React.HTMLAttributes { /** Required unique identifier */ id: string; /** Simple text label */ label?: string; /** Whether the tab is disabled */ disabled?: boolean; /** Tab content */ children?: React.ReactNode; } export declare const TyTab: React.ForwardRefExoticComponent>; //# sourceMappingURL=TyTab.d.ts.map