import { Image } from '../Image.js'; import { Mask } from '../Mask.js'; export interface DilateOptions { /** * Matrix with odd dimensions (e.g. 1 by 3). The kernel can only have ones and zeros. * Accessing a value: kernel[row][column]. * @default `[[1, 1, 1], [1, 1, 1], [1, 1, 1]]` */ kernel?: number[][]; /** * Number of iterations of the algorithm. * @default `1` */ iterations?: number; } export declare function dilate(image: Image, options?: DilateOptions): Image; export declare function dilate(image: Mask, options?: DilateOptions): Mask; //# sourceMappingURL=dilate.d.ts.map