export interface XImages { model?: string; n?: number; } export interface XChat { model?: string; max_tokens?: number; temperature?: number; system_prompt?: string; } export interface X { chat?: true | XChat; images?: true | XImages; } //# sourceMappingURL=x.d.ts.map