///
import { type TooltipProps } from '../../components/Tooltip/Tooltip';
export declare enum ChoiceGroupDirection {
VERTICAL = "vertical",
HORIZONTAL = "horizontal"
}
export declare enum ChoiceGroupColumns {
SingleCol = "single-column",
TwoCol = "two-column"
}
export interface ChoiceGroupLayoutProps {
label: string;
description?: string;
error?: string;
helperText?: string;
direction?: ChoiceGroupDirection;
layout?: ChoiceGroupColumns;
children: React.ReactNode;
className?: string;
tooltipProps?: TooltipProps;
}
export declare const ChoiceGroupLayout: React.FC;