export interface CommentComposerHandle { destroy(): void; focus(): void; getAttachment(): File | null; getHtml(): string; getPlainText(): string; isEmpty(): boolean; setError(message: string): void; stopVoiceInput(): void; } interface CommentComposerOptions { container: HTMLElement; onSubmit(): void; } export declare function renderCommentBoxHtml(): string; export declare function setupCommentComposer(options: CommentComposerOptions): CommentComposerHandle; export declare function getSubmitIcon(): string; export {}; //# sourceMappingURL=commentComposer.d.ts.map