import { ImageParams } from "./vision"; export interface DoubaoImageParams extends ImageParams { model_version?: string; req_key?: string; req_schedule_conf?: string; logo_info?: { add_logo?: boolean; position?: number; language?: number; opacity?: number; logo_text_content?: string; }; } export interface DoubaoImageResponse { binary_data_base64?: string[]; image_urls?: string[]; } export declare const DOUBAO_MODELS: { readonly GENERAL_V2_1_L: "general_v2.1_L"; }; export declare const DOUBAO_REQ_KEYS: { readonly HIGH_AES_GENERAL_V21_L: "high_aes_general_v21_L"; };