import React from 'react'; interface FunctionLibraryProps { visible: boolean; wrapRef?: any; onClose: () => void; onConfirm: (value: string) => void; } declare const FunctionLibrary: React.FC; export default FunctionLibrary;