import { type ComponentPropsWithoutRef, type ReactNode, type SyntheticEvent } from "react"; export interface TabsNextProps extends Omit, "onChange"> { children?: ReactNode; /** * The default value. Use when the component is not controlled. */ defaultValue?: string; /** * The value. Use when the component is controlled. */ value?: string; /** * Callback fired when the selection changes. The event will be null when selection is moved automatically. */ onChange?: (event: SyntheticEvent | null, value: string) => void; } export declare const TabsNext: import("react").ForwardRefExoticComponent>;