import { default as React } from 'react'; export interface TabProps { children: React.ReactNode; /** * Used with the `Tabs` wrapper: identifies which `TabPanel` this tab controls. * When provided inside a `Tabs` context, `isSelected` and `onClick` are derived * automatically and do not need to be passed. */ value?: string; /** Standalone mode: whether the tab is selected. Ignored when `value` + `Tabs` context is present. */ isSelected?: boolean; /** Standalone mode: click handler. Ignored when `value` + `Tabs` context is present. */ onClick?: () => void; /** When set, renders the tab as an anchor tag navigating to this URL. */ href?: string; /** Target for the anchor tag, e.g. "_blank". Only used when `href` is set. */ target?: string; className?: string; } export declare function Tab({ children, value, isSelected: isSelectedProp, onClick, href, target, className }: TabProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Tab.d.ts.map