/** Segmented tab bar above a panel. Active tab is a neutral-1a chip with a hairline. export interface TabsProps extends React.HTMLAttributes { defaultValue?: string; value?: string; onValueChange?: (value: string) => void; } export function Tabs(props: TabsProps): JSX.Element; export function TabsList(props: React.HTMLAttributes): JSX.Element; export function TabsTrigger(props: React.ButtonHTMLAttributes & { value: string }): JSX.Element; export function TabsContent(props: React.HTMLAttributes & { value: string }): JSX.Element;