import Joi from 'joi'; import { GoogleServiceAccountKeyFragment } from '../../../graphql/generated'; import { GoogleServiceAccountKey } from '../credentials'; export declare const MinimalGoogleServiceAccountKeySchema: Joi.ObjectSchema; export declare function readAndValidateServiceAccountKey(keyJsonPath: string): GoogleServiceAccountKey; export declare function selectGoogleServiceAccountKeyAsync(keys: GoogleServiceAccountKeyFragment[]): Promise; export declare function detectGoogleServiceAccountKeyPathAsync(projectDir: string): Promise;