export function downsampleBilinear({ image }: { image: any; }): { data: Uint8Array; width: number; height: number; }; export function upsampleBilinear({ image, padOneWidth, padOneHeight }: { image: any; padOneWidth: any; padOneHeight: any; }): { data: Float32Array; width: number; height: number; }; export function resize({ image, ratio }: { image: any; ratio: any; }): { data: Uint8Array; width: any; height: any; };