import { AIGatewayConfig, AIGatewayDefinitionBrand, AIGatewayServiceInput } from "./types.mjs"; //#region src/configure/services/aigateway/index.d.ts /** * Define an AI Gateway configuration for the Tailor SDK. * @param name - AI Gateway name * @param config - AI Gateway configuration * @returns Defined AI Gateway */ export declare function defineAIGateway(name: string, config: Omit): { readonly name: string; readonly cors?: string[] | undefined; readonly authNamespace?: import("@tailor-platform/sdk").AuthNamespaceName; } & AIGatewayDefinitionBrand; //#endregion export type { AIGatewayConfig };