import type { ExportSvgOptions } from '../types';
export default function ExportSvgDialog({ model, handleClose, }: {
    model: {
        exportSvg(opts: ExportSvgOptions): Promise<void>;
    };
    handleClose: () => void;
}): import("react/jsx-runtime").JSX.Element;
