import { GpuQuota } from './types'; export declare const sanitizeGPUKey: (key?: string) => string | undefined; export declare const deSanitizeGPUKey: (key?: string) => string | undefined; export declare const getGPUResourceValue: (resources: Record | undefined, key: string) => string | number | undefined; export declare const isValidGPUResourceValue: (value: unknown) => value is string | number; export declare const normalizeGPUResourceValue: (value: number | string | null | undefined) => number | undefined; export declare const deSanitizeGPUObjectKey: >(obj?: T | undefined) => T; export declare const isNvidiaVgpu: (key?: string) => boolean; export declare const isNvidiaMig: (key?: string) => boolean; export declare const isNvidiaGpu: (key?: string) => boolean; export declare const isHamiGpu: (provider?: string) => boolean; export declare const transResourceToQuota: (resources: Record, gpuKeyTypeMap: Map, withRequest?: boolean) => GpuQuota;