export type Environment = 'dev' | 'uat' | 'prod'; /** * Returns the user-storage API base URL for the given environment. * * @param environment - The target environment. * @returns The base URL for the user-storage API. * @throws If the environment is invalid. */ export declare function getUserStorageApiUrl(environment: Environment): string; //# sourceMappingURL=env.d.cts.map