import 'codeceptjs'; /** * RichEditorTxtBox class */ export declare class RichEditorTxtBox { /** * To Enter text into Rich Box Editor * * ```js * RichEditorTxtBox.typeToRichEditor("Project_123","Export"); * ``` * * @param {string} editorFrame // Locator for the editorFrame * @param {string} value // Value to enter into Editor */ static typeToRichEditor(editorFrame: string, value: string): Promise; }