interface Options {
    account_id: string;
    password?: string;
    action: "get" | "delete" | "regenerate";
}
export default function manage({ account_id, password, action, }: Options): Promise<string | undefined>;
export declare function getAccountWithApiKey(api_key: string): Promise<string | undefined>;
export {};
