export declare function decodeBmp(source: any, { width: iconWidth, height: iconHeight, icon }?: {
    width?: number | undefined;
    height?: number | undefined;
    icon?: boolean | undefined;
}): ImageData & {
    colorDepth: any;
};
