import InputRadioChoice from "../../InputRadio/interfaces/IInputRadioChoice";

export default interface Consent {
    name: string;
    label: string;
    documentCode?: string;
    hide?: boolean | null;
    required?: boolean;
    checked?: boolean;
    error?: string | null;
    displayAsCheckbox?: boolean
    choices?: InputRadioChoice[]
    validation?: string
}
