/** * This file was auto-generated by Fern from our API Definition. */ export interface VellumEnvironmentUrls { default: string; predict: string; documents: string; } export declare const VellumEnvironment: { readonly Production: { readonly default: "https://api.vellum.ai"; readonly predict: "https://predict.vellum.ai"; readonly documents: "https://documents.vellum.ai"; }; }; export type VellumEnvironment = typeof VellumEnvironment.Production;