import { UserInfo } from "./types"; export declare const requestPublicKey: () => Promise; export declare const submitTransaction: (transactionXdr: string, opts?: string | { network?: string | undefined; accountToSign?: string | undefined; networkPassphrase?: string | undefined; } | undefined, accountToSign?: string | undefined) => Promise; export declare const submitBlob: (blob: string, opts?: { accountToSign?: string | undefined; } | undefined) => Promise; export declare const submitAuthEntry: (entryXdr: string, opts?: { accountToSign?: string | undefined; } | undefined) => Promise; export declare const requestNetwork: () => Promise; export declare const requestNetworkDetails: () => Promise<{ network: string; networkUrl: string; networkPassphrase: string; sorobanRpcUrl?: string | undefined; }>; export declare const requestConnectionStatus: () => Promise; export declare const requestAllowedStatus: () => Promise; export declare const setAllowedStatus: () => Promise; export declare const requestUserInfo: () => Promise;