export declare class RadioDemoComponent {
    model: {
        name: string;
        required: boolean;
        horizontal: boolean;
        value: string;
        options: {
            label: string;
            value: string;
        }[];
    };
    markup: string;
}
