import { CommerceAPIOperations } from '../commerce'; interface ContentEditorActions { updatePreviewUrl: (url: string) => void; safeReaction(watchFunction: () => T, reactionFunction: (arg: T) => void, options?: { fireImmediately: true; }): void; } export declare const onEditorLoad: (config: any, apiOperations: CommerceAPIOperations, resourceName: string) => ({ safeReaction, updatePreviewUrl }: ContentEditorActions) => void; export {};