/** * Takes an existing image URL and return a new URL o fthe image resized to * the width/height in the arguments. */ /** * Takes an existing URL and generates a new URL reflecting that the image * size was changed. */ export declare function generateImageQueryUrl(url: string, { width, height }: { width: number; height: number; }): string;