import { Tensor } from '../../../tensor'; import { WebGLInferenceHandler } from '../inference-handler'; import { ProgramInfoLoader } from '../types'; import { ConvAttributes } from './conv'; export declare const createPackedIm2ColProgramInfoLoader: (inferenceHandler: WebGLInferenceHandler, x: Tensor, w: Tensor, outputShape: readonly number[], attributes: ConvAttributes) => ProgramInfoLoader;