import type Editor from '../Editor';
export interface AboutDialogLink {
    kind: 'link';
    text: string;
    href: string;
}
export interface AboutDialogEntry {
    heading: string | AboutDialogLink;
    text?: string;
    minimized?: boolean;
}
declare const makeAboutDialog: (editor: Editor, entries: AboutDialogEntry[]) => {
    close: () => Promise<void>;
};
export default makeAboutDialog;
