/// import { Device } from "./device"; import type { ATypedArray, Dtype } from "./dtype"; import { UntypedStorage } from "./storage"; import type { Kernel, KernelConfig, KernelSpec } from "./kernel"; export declare class DeviceCPU extends Device { constructor(); alloc(byteSize: number): UntypedStorage; createKernel(spec: KernelSpec, config: KernelConfig): Kernel; getStorageFromKernel(storage: ATypedArray | GPUBuffer): UntypedStorage; getBufferForKernel(storage: UntypedStorage, dtype: Dtype): ATypedArray | GPUBuffer; }