import React from 'react'; declare function setOpen(value: boolean): void; declare function setError(value: string | null): void; declare const WalletModalContext: React.Context<{ open: boolean; error: string | null; setOpen: typeof setOpen; setError: typeof setError; }>; export default WalletModalContext;