import { Rect } from '../types'; /** * Returns a new image cropped to the specified bounds. */ export default function crop({ data: src, width: srcWidth, height: srcHeight }: ImageData, bounds: Rect): ImageData;