import type { ReactNode } from "react"; export interface TabProps { label: ReactNode; value: string; disabled?: boolean; tabIndex?: number; children?: React.ReactNode; } export declare const Tab: import("react").ForwardRefExoticComponent>;