import { type ResolvedProfile } from './profile-resolver.js'; interface StartupProfileOptions { specPathEnv?: string; profilePath?: string; profileId?: string; profilesDir?: string; } interface StartupProfileResult { specPath?: string; profilePath?: string; profileId?: string; defaultProfile?: ResolvedProfile; hasExplicitSpecPath: boolean; } export declare function resolveStartupProfile(options: StartupProfileOptions): Promise; export {}; //# sourceMappingURL=startup-profile.d.ts.map