import { type ComponentPropsWithoutRef } from "react"; export interface TabNextPanelProps extends ComponentPropsWithoutRef<"div"> { /** * The value of the panel, this should map to the corresponding tab. */ value: string; } export declare const TabNextPanel: import("react").ForwardRefExoticComponent>;