import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IImageBitmap } from '../interfaces/official'; export declare const getState: (instance: IImageBitmap) => IImageBitmapProperties, setState: (instance: IImageBitmap, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare function ImageBitmapGenerator(): { new (): { readonly height: Promise; readonly width: Promise; close(): Promise; }; }; export interface IImageBitmapProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly height?: Promise; readonly width?: Promise; } export declare const ImageBitmapPropertyKeys: string[]; export declare const ImageBitmapConstantKeys: never[];