import { RGBA } from 'color-blend/dist/types'; import { NdArray } from 'ndarray'; /** * Creates an image filled with a color */ export declare const create: (width: number, height: number, color: RGBA) => NdArray; /** * Creates a duplicate image */ export declare const clone: (image: NdArray) => NdArray; /** * Draws scanlines onto an image */ export declare const draw: (image: NdArray, color: RGBA, scanlines: number[][]) => NdArray;