import type Editor from '../Editor'; export interface MessageDialogOptions { title: string; classNames?: string[]; contentClassNames?: string[]; } declare const makeAboutDialog: (editor: Editor, options: MessageDialogOptions) => { close: () => Promise; appendChild: (child: Node) => void; }; export default makeAboutDialog;