export interface ChoiceProps { /** A unique identifier for the choice */ id: string; /** Label for the choice */ label: React.ReactNode; /** Whether the associated form control is disabled */ disabled?: boolean; /** Display an error message */ error?: any; /** Visually hide the label */ labelHidden?: boolean; /** Content to display inside the choice */ children?: React.ReactNode; /** Additional text to aide in use */ helpText?: React.ReactNode; /** Callback when clicked */ onClick?(): void; /** Callback when mouse over */ onMouseOver?(): void; /** Callback when mouse out */ onMouseOut?(): void; /** add classname */ className?: string; } export declare const Choice: React.FC;