export interface UseTabProps { /** * If `true`, the `Tab` won't be toggleable * @default false */ disabled?: boolean; onClick?: React.MouseEventHandler; onFocus?: React.FocusEventHandler; value: string; } export declare function useTab

({ value, disabled, onFocus: _onFocus, onClick }: P, ref: React.ForwardedRef): { ref: ((instance: HTMLButtonElement | null) => void) | null; isSelected: boolean; isFocused: boolean; id: string; controlsId: string; onClick: (event: import("react").MouseEvent) => void; onFocus: ((event: import("react").FocusEvent) => void) | undefined; };