/** * This file was auto-generated by Fern from our API Definition. */ export interface OctoAIEnvironmentUrls { default: string; imageGen: string; textGen: string; } export declare const OctoAIEnvironment: { readonly Production: { readonly default: "https://api.octoai.cloud"; readonly imageGen: "https://image.octoai.run"; readonly textGen: "https://text.octoai.run"; }; readonly SecureLink: { readonly default: "https://api.securelink.octo.ai"; readonly imageGen: "https://image.securelink.octo.ai"; readonly textGen: "https://text.securelink.octo.ai"; }; }; export declare type OctoAIEnvironment = typeof OctoAIEnvironment.Production | typeof OctoAIEnvironment.SecureLink;