import React from 'react';
interface DropdownModalProps {
    show: boolean;
    options: string;
    setOptions: (v: string) => void;
    onCancel: () => void;
    onInsert: () => void;
}
declare const DropdownModal: React.FC<DropdownModalProps>;
export default DropdownModal;
