import { MessagePayload, MessengerConfig } from "@intlayer/editor"; //#region src/CommunicatorContext.d.ts type UseCrossPlatformStateProps = { postMessage: (payload: MessagePayload) => void; allowedOrigins?: string[]; senderId: string; }; /** * Returns the communicator API backed by the shared EditorStateManager messenger. */ declare const useCommunicator: () => UseCrossPlatformStateProps; //#endregion export { type MessengerConfig, UseCrossPlatformStateProps, useCommunicator }; //# sourceMappingURL=CommunicatorContext.d.ts.map