import { EditorType } from '../core/EditorType';
import { ActionRecipe } from '../../recipe/ActionRecipe';
interface InteropProcessor {
    /** The Type of the current Processor */
    editorType: EditorType;
    /** Adds string content to the focused editor */
    processFinalResult(recipe: Partial<ActionRecipe>, editor?: Element | any): void;
    /** Process the voice command in the current focused editor */
    processCommand(command: Partial<ActionRecipe>, editor?: Element | any): void;
}
export { InteropProcessor };
