export declare class TextBoxDemoComponent {
    model: {
        name: string;
        icon: string;
        type: string;
        shouldMatch: boolean;
        match: string;
        required: boolean;
        placeholder: string;
        value: string;
    };
    markup: string;
}
