import type { Image } from '../Image.js'; export interface MultiplyOptions { /** * Channels where value will be multiplied. * @default all channels */ channels?: number[]; /** * Image to which the resulting image has to be put. */ out?: Image; } /** * * Multiplies points by a certain value. * @param image - image to which multiplication will be applied. * @param value - Value by which each pixel will be multiplied. * @param options - Multiply options * @returns image. */ export declare function multiply(image: Image, value: number, options?: MultiplyOptions): Image; //# sourceMappingURL=multiply.d.ts.map