export type EIP6963ProviderDetail = {
    info: {
        uuid: string;
        name: string;
        icon: string;
        rdns: string;
    };
    provider: any;
};
export declare function startEIP6963Listener(): void;
export declare function getEIP6963ProviderByRdns(rdns: string): any;
export declare function getAllEIP6963Providers(): EIP6963ProviderDetail[];
