import { ConnectionType } from '../types';
export interface RecentConnectionMeta {
    chainId?: string;
    disconnected?: boolean;
    providerId: string;
    type?: ConnectionType;
}
export declare function storeRecentConnectionMeta(meta: RecentConnectionMeta | undefined, storageKey?: string): void;
export declare function getRecentConnectionMeta(storageKey?: string): RecentConnectionMeta | undefined;
type UseRecentConnectionMeta = [
    value: RecentConnectionMeta | undefined,
    setValue: (meta: RecentConnectionMeta | undefined) => void
];
export declare function useRecentConnectionMeta(): UseRecentConnectionMeta;
export {};
