import { WalletObject } from '@ocap/wallet'; declare const getDelegator: () => WalletObject; declare const getDelegatee: () => WalletObject; declare const getDelegation: (delegator: WalletObject, delegatee: WalletObject) => Promise; declare const getAuthenticatorProps: (options?: {}) => { appInfo(...args: any[]): Promise; memberAppInfo({ request, baseUrl }: { request: any; baseUrl: any; }): Promise<{ name: string; description: string; icon: string; link: string; updateSubEndpoint: boolean; subscriptionEndpoint: string; nodeDid: string; publisher: string; }>; delegator({ request }: { request: any; }): Promise>; delegation({ request }: { request: any; }): Promise; chainInfo: () => { type: "arcblock" | "ethereum" | "solona"; id: string; host: string; }; }; export { getDelegation, getDelegator, getDelegatee, getAuthenticatorProps };