import { type ComponentPropsWithoutRef } from "react"; export interface TabNextProps extends ComponentPropsWithoutRef<"div"> { /** * If `true`, the tab will be disabled. */ disabled?: boolean; /** * The value of the tab. */ value: string; } export declare const TabNext: import("react").ForwardRefExoticComponent>;