import { Signer } from '../../types'; export declare type FetchSignerArgs = { /** Chain ID to use for signer */ chainId?: number; }; export declare type FetchSignerResult = TSigner | null; export declare function fetchSigner({ chainId, }?: FetchSignerArgs): Promise>;