import { ControlFactory } from "../types"; export type CreateJsDesignerConfig = { getImageBlob: (imageId: string) => Promise; controlFactories: ControlFactory[]; }; export declare const CreateJsDesignerProvider: import("react").MemoExoticComponent<({ config, children }: { config: CreateJsDesignerConfig; children: JSX.Element | JSX.Element[]; }) => import("react/jsx-runtime").JSX.Element>;