import { Environment, Region } from '@coveo/platform-client'; export declare enum PlatformEnvironment { Dev = "dev", Stg = "stg", Hipaa = "hipaa", Prod = "prod" } export declare const DEFAULT_ENVIRONMENT: PlatformEnvironment.Prod; export declare const DEFAULT_REGION: Region.US; export type PlatformUrlOptions = { environment: PlatformEnvironment; region: Region; }; export declare function platformUrl(options?: Partial): string; export declare function castEnvironmentToPlatformClient(e: PlatformEnvironment): Environment;