export declare function getGuestAid(apiUrl: string, seedPassword: string): Promise; export declare function getEntryPointConfig(aid: string, apiUrl: string): Promise<{ heartbeatServer: string; messageServer: string; } | null>; export declare function signCert(agentId: string, apiUrl: string, csr: string): Promise; export declare function signIn(agentId: string, apiUrl: string, privateKey: string, publicKeyPem?: string, certPem?: string): Promise<{ signature: string | null; signData: any; } | null>; export declare function signOut(agentId: string, apiUrl: string): Promise;