import { default as React } from 'react'; import { IconProps } from '../../../base/icon/icon'; export interface TabsTriggerProps { /** * Unique identifier for this tab. Used as the element id and to link to the * corresponding TabsContent panel (aria-controls="{id}-panel"). */ id: string; /** * Tab label text */ children: React.ReactNode; /** * Icon displayed before the label */ icon?: IconProps['name']; /** * Whether the tab is disabled * @default false */ disabled?: boolean; /** * Additional class name(s) */ className?: string; } export declare const TabsTrigger: { (props: TabsTriggerProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default TabsTrigger;