export type ForumThreadEditorProps = {
    initialTitle?: string;
    initialText?: string;
    id: string;
    onClose: () => void;
    isReply: boolean;
} & ({
    isDialog: false;
    openDialog?: never;
} | {
    isDialog: true;
    openDialog: boolean;
});
export declare function ForumThreadEditor(props: ForumThreadEditorProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ForumThreadEditor.d.ts.map