export interface SizeOption { name: string; value: string; } export interface OptionItem { name: string; value: string; description?: string; } export declare const TEXT_TO_IMAGE_MODEL_OPTIONS: OptionItem[]; export declare const TEXT_TO_IMAGE_STYLE_OPTIONS: OptionItem[]; export declare const TEXT_TO_IMAGE_SIZE_SUGGESTIONS: SizeOption[]; export declare const IMAGE_REFERENCE_MODE_OPTIONS: OptionItem[]; export declare const IMAGE_TO_IMAGE_MODEL_OPTIONS: OptionItem[]; export declare const MULTIMODAL_IMAGE_EDIT_MODEL_OPTIONS: OptionItem[]; export declare const IMAGE_OUTPAINT_MODEL_OPTIONS: OptionItem[]; export declare const AUDIO_MODEL_OPTIONS: OptionItem[]; export declare const VISION_MODEL_OPTIONS: OptionItem[]; export declare const QWEN3_TTS_VOICE_OPTIONS: OptionItem[]; export declare const QWEN_TTS_VOICE_OPTIONS: OptionItem[]; export declare const AUDIO_MODEL_VOICE_OPTIONS: Record; export declare const AUDIO_MODEL_LANGUAGE_OPTIONS: Record; export declare const DEFAULT_AUDIO_LANGUAGE = "Chinese"; export declare const DEFAULT_EMOJI_VIDEO_MODEL = "emoji-v1"; export declare const DEFAULT_EMOJI_DETECT_MODEL = "emoji-detect-v1"; export declare const DEFAULT_EMOJI_DETECT_RATIO = "1:1"; export declare const EMOJI_TEMPLATE_ID_PLACEHOLDER = "emoji_zz_heart_love_1"; export declare const VIDEO_RETALK_MODEL_OPTIONS: OptionItem[]; export declare const DEFAULT_VIDEO_RETALK_MODEL = "videoretalk"; export declare const DEFAULT_ANIMATE_MIX_MODEL = "wan2.2-animate-mix"; export declare const DEFAULT_ANIMATE_MOVE_MODEL = "wan2.2-animate-move"; export declare const ANIMATE_MIX_MODE_OPTIONS: OptionItem[]; export declare const ANIMATE_MOVE_MODE_OPTIONS: OptionItem[]; export declare const WAN26_T2I_SIZE_SUGGESTIONS: SizeOption[]; export declare const WAN26_IMAGE_SIZE_SUGGESTIONS: SizeOption[]; export declare const WAN27_IMAGE_SIZE_SUGGESTIONS: SizeOption[]; export declare const TEXT_TO_IMAGE_MODEL_SIZE_OPTIONS: Record; export declare const TEXT_TO_IMAGE_MODELS_WITH_STYLE: string[]; export declare const TEXT_TO_IMAGE_MODELS_WITH_REFERENCE: string[]; export declare const TEXT_TO_IMAGE_MODELS_WITH_COUNT: string[]; export interface SeedRange { min: number; max: number; } export declare const DEFAULT_SEED_RANGE: SeedRange; export declare const MIN_NON_ZERO_SEED = 1; export declare const TEXT_TO_IMAGE_SEED_RANGE: Record; export declare const IMAGE_EDIT_SEED_RANGE: Record; export interface DurationOption { name: string; value: number; } export declare const TEXT_TO_VIDEO_SIZE_OPTIONS: Record; export declare const TEXT_TO_VIDEO_SIZE_DEFAULTS: Record; export declare const TEXT_TO_VIDEO_SIZE_FALLBACKS: Record; export declare const TEXT_TO_VIDEO_ALLOWED_SIZES: Record>; export declare function listAllowedSizesForModel(model: string): string; export declare const FIRST_FRAME_RESOLUTION_OPTIONS: Record; export declare const FIRST_FRAME_RESOLUTION_DEFAULTS: Record; export declare const FIRST_FRAME_RESOLUTION_ALLOWED: Record>; export declare const FIRST_FRAME_DURATION_OPTIONS: Record; export declare const FIRST_FRAME_DURATION_DEFAULTS: Record; export declare const FIRST_FRAME_DURATION_ALLOWED: Record>; export declare function listFirstFrameResolutionsForModel(model: string): string; export declare function listFirstFrameDurationsForModel(model: string): string;