import { Primitive } from "../../utils/Primitive.js"; import { type ComponentRef, type ComponentPropsWithoutRef } from "react"; export declare namespace BranchPickerPrimitiveRoot { type Element = ComponentRef; type Props = ComponentPropsWithoutRef & { /** * Whether to hide the branch picker when there's only one branch available. * When true, the component will only render when multiple branches exist. * @default false */ hideWhenSingleBranch?: boolean | undefined; }; } /** * The root container for branch picker components. * * This component provides a container for branch navigation controls, * with optional conditional rendering based on the number of available branches. * It integrates with the message branching system to allow users to navigate * between different response variations. * * @example * ```tsx * * * * * * ``` */ export declare const BranchPickerPrimitiveRoot: import("react").ForwardRefExoticComponent & import("react").HTMLAttributes & { asChild?: boolean; }, "ref"> & { render?: import("react").ReactElement | undefined; } & import("react").RefAttributes, "ref"> & { /** * Whether to hide the branch picker when there's only one branch available. * When true, the component will only render when multiple branches exist. * @default false */ hideWhenSingleBranch?: boolean | undefined; } & import("react").RefAttributes>; //# sourceMappingURL=BranchPickerRoot.d.ts.map