declare const GpuConfig: ({
    id: number;
    name: string;
    tier: string;
    shortName: string;
    multiplier: number;
    baseFnPoints: number;
    gpuPricePerHour: number;
    gpuPricePerMonth: number;
    cpuPricePerMonth: number;
    ramPricePerGbPerMonth: number;
    storagePricePerGbPerMonth: number;
    vendor: string;
    disabled?: undefined;
} | {
    id: number;
    name: string;
    tier: string;
    shortName: string;
    multiplier: number;
    baseFnPoints: number;
    gpuPricePerHour: number;
    gpuPricePerMonth: number;
    cpuPricePerMonth: number;
    ramPricePerGbPerMonth: number;
    storagePricePerGbPerMonth: number;
    vendor: string;
    disabled: boolean;
})[];
export default GpuConfig;
//# sourceMappingURL=gpu-config.d.ts.map