import type { MetabaseAdmin } from '@stamhoofd/metabase/api'; import type { DevelopmentDomains } from '../config/development-config.js'; /** * The admin account the CLI creates when it completes the setup wizard, so it can keep configuring * the instance later. Override both when the instance was set up by hand with another account: * without valid credentials the CLI cannot register the platform statistics database. * * Local only. A server is set up by a person, and its credentials come from 1Password. */ export declare const metabaseAdminEmail: string; export declare const metabaseAdminPassword: string; export declare const metabaseAdmin: MetabaseAdmin; export type MetabaseDataSource = { name: string; database: string; mysqlPort: number; }; export declare function buildMetabaseConfigOutput(domains: DevelopmentDomains, dataSource: MetabaseDataSource): string; //# sourceMappingURL=metabase-config.d.ts.map