/** * This file was auto-generated by Fern from our API Definition. */ export interface ChariotEnvironmentUrls { api: string; } export declare const ChariotEnvironment: { readonly Production: { readonly api: "https://api.givechariot.com"; }; readonly Sandbox: { readonly api: "https://sandboxapi.givechariot.com"; }; }; export declare type ChariotEnvironment = typeof ChariotEnvironment.Production | typeof ChariotEnvironment.Sandbox;