export interface ChoiceOption {
    Name: string;
    Value?: string;
    Selected?: boolean;
}
export declare class ChoiceOptionModel {
    Name: string | null;
    Value?: string | null;
    Selected?: boolean;
}
