import { type IDomEditor } from '@wangeditor/editor'; import BaseFn from '../base-fn'; import type { ContentData, SubmitData } from './data'; export declare class ManagementFn extends BaseFn { constructor(editor: IDomEditor); isDisabled(): boolean; readContentData(): { category: string; name: string; pitch: string; role: string; speed: string; style: string; } | undefined; exec(opt: SubmitData, contentData: ContentData): void; }