import { BaseExternalAccountClient, Compute, JWT, UserRefreshClient, Impersonated } from 'google-auth-library'; export declare type GoogleAuthClient = Compute | JWT | UserRefreshClient | Impersonated | BaseExternalAccountClient; export declare type AccountDetails = { id: string; name?: string; }; export declare type AccountDetailsOrIdList = AccountDetails[] | string[];