import { TemplateBitFormatEnum } from './TemplateBitFormatEnum';
/** Installation template for a VPS Virtual Machine */
export interface Template {
    /**  */
    availableLanguage: string[];
    /**  */
    bitFormat: TemplateBitFormatEnum;
    /**  */
    distribution: string;
    /**  */
    id: number;
    /**  */
    locale: string;
    /**  */
    name: string;
}
//# sourceMappingURL=Template.d.ts.map