export declare const DEFAULT_COMPUTE_IMAGE = "ubuntu2004"; export declare const FALLBACK_COMPUTE_IMAGE = "default"; declare type Group = "Main" | "Ubuntu 18.04" | "Ubuntu 20.04" | "Ubuntu 16.04"; export declare const GROUPS: Group[]; interface ComputeImage { title: string; short: string; descr: string; group: Group; order?: number; hidden?: boolean; } export declare const COMPUTE_IMAGES: { [key: string]: ComputeImage; }; export declare function get_compute_images(opts: any): void; export declare const is_valid: (name: any) => boolean; export {};