export type GpuSettingInfo = { id: string; vram: string; name: string; arch?: string; }; export declare const cudaVersion: () => Promise<"12" | "11" | undefined>; export declare const checkNvidiaGPUExist: () => Promise; export declare const getCudaVersion: () => Promise; export declare const getGpuInfo: () => Promise;