import { WebviewConstructor } from './utils'; export declare enum ConstructorType { Image = "Image", CanvasGradient = "CanvasGradient", ImageData = "ImageData" } export declare function useConstructorsRegistry(): { register: (registerWebviewConstructor: Function) => void; getConstructor: (type: ConstructorType) => WebviewConstructor | undefined; };