type Environment = 'dev' | 'staging' | 'prod'; type GetEnvUrlsReturn = { marketingUrl: string; embedApiUrl: string; publicRecorderUrl: string; }; declare const marketingUrl = "https://vouchfor.com"; declare const devEmbedApiUrl = "https://embed-dev.vouchfor.com/v1"; declare const stagingEmbedApiUrl = "https://embed-staging.vouchfor.com/v1"; declare const prodEmbedApiUrl = "https://embed.vouchfor.com/v1"; declare const devPublicRecorderUrl = "https://dev.vouchfor.com"; declare const stagingPublicRecorderUrl = "https://staging.vouchfor.com"; declare const prodPublicRecorderUrl = "https://app.vouchfor.com"; declare function getEnvUrls(env: Environment): GetEnvUrlsReturn; export { marketingUrl, devEmbedApiUrl, stagingEmbedApiUrl, prodEmbedApiUrl, devPublicRecorderUrl, stagingPublicRecorderUrl, prodPublicRecorderUrl, getEnvUrls }; export type { Environment };