export declare enum Profile { Portable = "portable", Standard = "standard", Bunker = "bunker" } export interface ProfileConfig { id: Profile; name: string; mem: number; parallel: number; } export declare const PROFILES: Record; //# sourceMappingURL=profiles.d.ts.map