export interface AIImageInfo { Title: string; Description: string; Software: string; Source: string; Comment: { uc: string; steps: string; sampler: string; scale: string; seed: string; noise?: string; strength: string; }; others?: Record; extras?: Record[]; } export declare const PromptExtractor: (buffer: ArrayBuffer) => Promise;