import { GPU } from 'gpu.js'; import { GraphDimensions } from '../types/RealRendererTypes'; /** * @param gpu GPU.js Instance * @param dimensions Dimensions of the Output Graph */ export declare function getLoadDataKernel(gpu: GPU, dimensions: GraphDimensions): ((graphPixels: import("gpu.js").ThreadKernelVariable) => void | import("gpu.js").Texture | any[][] | any[][][] | any[][][][]) & import("gpu.js").IKernelRunShortcutBase;