import { type ActionButtonElement, type ActionButtonProps } from "../../utils/createActionButton.js"; declare const useBranchPickerNext: () => (() => void) | null; export declare namespace BranchPickerPrimitiveNext { type Element = ActionButtonElement; /** * Props for the BranchPickerPrimitive.Next component. * Inherits all button element props and action button functionality. */ type Props = ActionButtonProps; } /** * A button component that navigates to the next branch in the message tree. * * This component automatically handles switching to the next available branch * and is disabled when there are no more branches to navigate to. * * @example * ```tsx * * Next → * * ``` */ export declare const BranchPickerPrimitiveNext: import("react").ForwardRefExoticComponent & import("react").ButtonHTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref"> & import("react").RefAttributes>; export {}; //# sourceMappingURL=BranchPickerNext.d.ts.map