/** * Environment configuration for AgP SDK */ export type Environment = 'production' | 'staging'; export interface EnvironmentConfig { portalUrl: string; portalFrontendUrl: string; agentPlatformUrl: string; } export declare const ENVIRONMENTS: Record; /** * Get environment configuration * @param env Environment name ('production' or 'staging') * @returns Environment configuration with all URLs */ export declare function getEnvironmentConfig(env?: Environment): EnvironmentConfig; //# sourceMappingURL=config.d.ts.map