import React from 'react'; import { ViewType } from '../../types'; interface OptionsDropdownPropsType { className: string; shouldShowDropdown: boolean; view: ViewType; onMakeDefault: () => void; onEdit: () => void; onDuplicate: () => void; onDelete: () => void; handleCloseDropdown: () => void; } declare const OptionsDropdown: ({ className, view, shouldShowDropdown, onMakeDefault, onEdit, onDuplicate, onDelete, handleCloseDropdown, }: OptionsDropdownPropsType) => React.JSX.Element; export default OptionsDropdown; //# sourceMappingURL=OptionsDropdown.d.ts.map