export declare const orientations: readonly ["vertical", "horizontal"]; export type InputChoiceGroupOrientation = typeof orientations[number]; /** * @deprecated use `orientations` instead */ export declare const layouts: readonly ["vertical", "horizontal", "horizontalFluid"]; /** * @deprecated use `InputChoiceGroupOrientation` instead */ export type InputChoiceGroupLayouts = typeof layouts[number];