import { HintExpander } from '../ontario-hint-expander/hint-expander.interface';
export interface RadioOption {
/**
* The text to display as checkbox option label.
*
* @example
*
*
*
* The resulting label will show `"Radio option 1 label"`.
*/
label: string;
/**
* The radio option value.
*
* @example
*
*
*
* The resulting value will be `"radio-option-1"`.
*/
value: string;
/**
* Used to establish a relationship between radio option label and the radio option input.
* This ID must be unique to the radio option.
*
* @example
*
*
*/
hintExpander?: HintExpander;
/**
* Used to maintain the state of whether or not the option is checked.
* This is for internal use only.
*/
checked?: boolean;
}