import { type Credential } from './credential.js'; export type AppOptions = { credential: Credential; projectId?: string; }; export type InitializeAppOptions = { credential?: Credential; serviceAccountJson?: string; projectId?: string; }; export type App = { name: string; options: AppOptions; }; export declare function initializeApp(options?: InitializeAppOptions, name?: string): App; export declare function getApps(): App[]; export declare function getApp(name?: string): App; export declare function deleteApp(app: App): Promise; //# sourceMappingURL=lifecycle.d.ts.map