import type * as React from "react"; /** Shared option shape — the conventional `CheckboxOptionType` / `Radio` options entry. */ export type ChoiceOption = { label: React.ReactNode; value: string; disabled?: boolean; description?: React.ReactNode; }; export type ChoiceOrientation = "horizontal" | "vertical"; export declare function choiceGroupClassName(_orientation?: ChoiceOrientation, className?: string): string;