import { TemplateOsInputTypeEnum } from './TemplateOsInputTypeEnum';
/** A structure describing input questions for the specific OS template */
export interface TemplateOsInput {
    /** Default value */
    default?: string;
    /** Input question description */
    description?: string;
    /** When type is enum: name of the possible enum values */
    enum: string[];
    /** Whether answering to that question is mandatory in order to trigger an install with that specific OS or not */
    mandatory: boolean;
    /** Input question name */
    name: string;
    /** Input type */
    type: TemplateOsInputTypeEnum;
}
//# sourceMappingURL=TemplateOsInput.d.ts.map