import { FC, PropsWithChildren } from "react"; import { IntlayerConfig } from "@intlayer/types/config"; //#region src/EditorProvider.d.ts type EditorProviderProps = { configuration: Pick; postMessage: (data: any) => void; allowedOrigins: string[]; }; /** * EditorProvider creates and manages the lifecycle of an EditorStateManager, * provides it to all descendants, and registers the Lit web components. */ declare const EditorProvider: FC>; //#endregion export { EditorProvider, EditorProviderProps }; //# sourceMappingURL=EditorProvider.d.ts.map