import type { GenericError } from '@forgerock/sdk-types'; import type { ResolvedServerConfig } from './wellknown.utils.js'; export type { JourneyServerConfig, JourneyClientConfig, LegacyServerConfig, } from '@forgerock/sdk-types'; /** * Internal configuration after wellknown discovery and path resolution. * Used internally by the journey client — not part of the public API. * * @internal */ export interface InternalJourneyClientConfig { serverConfig: ResolvedServerConfig; error?: GenericError; } //# sourceMappingURL=config.types.d.ts.map