//#region src/constants.d.ts declare const LEGACY_DEV_INSTANCE_SUFFIXES: string[]; declare const CURRENT_DEV_INSTANCE_SUFFIXES: string[]; declare const DEV_OR_STAGING_SUFFIXES: string[]; declare const LOCAL_ENV_SUFFIXES: string[]; declare const STAGING_ENV_SUFFIXES: string[]; declare const LOCAL_API_URL = "https://api.lclclerk.com"; declare const STAGING_API_URL = "https://api.clerkstage.dev"; declare const PROD_API_URL = "https://api.clerk.com"; declare const LOCAL_FAPI_URL = "https://frontend-api.lclclerk.com"; declare const STAGING_FAPI_URL = "https://frontend-api.clerkstage.dev"; declare const PROD_FAPI_URL = "https://frontend-api.clerk.dev"; declare const DEFAULT_PROXY_PATH = "/__clerk"; /** * Returns the URL for a static image * using the new img.clerk.com service */ declare function iconImageUrl(id: string, format?: 'svg' | 'jpeg'): string; //#endregion export { CURRENT_DEV_INSTANCE_SUFFIXES, DEFAULT_PROXY_PATH, DEV_OR_STAGING_SUFFIXES, LEGACY_DEV_INSTANCE_SUFFIXES, LOCAL_API_URL, LOCAL_ENV_SUFFIXES, LOCAL_FAPI_URL, PROD_API_URL, PROD_FAPI_URL, STAGING_API_URL, STAGING_ENV_SUFFIXES, STAGING_FAPI_URL, iconImageUrl }; //# sourceMappingURL=constants.d.ts.map