import { type ImgData } from "./utils"; /** * Converts an image stream to a ThumbHash PNG data URL. * * @param {ImgData} input - The readable stream or buffer of the image. * @returns {Promise} string containing the data URL placeholder image. */ export declare function getImgPlaceholder(input: ImgData): Promise;