export declare function getDecryptKey(aid: string, password: string): Promise<string | null>;
export declare function savePrivateKey(aid: string, privateKey: string, password: string): Promise<void>;
export declare function createAid(aid: string, apiUrl: string, seedPassword: string): Promise<boolean>;
