export type ServiceAccount = { projectId: string; clientEmail: string; privateKey: string; }; export type Credential = { getServiceAccount(): ServiceAccount; }; export declare function cert(serviceAccount: ServiceAccount): Credential; //# sourceMappingURL=credential.d.ts.map