import type { IDictionary, IJodit } from "jodit/esm/types/index";
/**
 * Read entire editor content in HTML format
 */
export declare function execute(jodit: IJodit, args: IDictionary, signal: AbortSignal): Promise<{
    html: string;
    length: number;
    start?: number;
    end?: number;
}>;
