export declare class ComfyAPIClient { private client; constructor(); getSystemStats(): Promise; getQueue(): Promise; submitWorkflow(workflow: any): Promise; getHistory(promptId?: string): Promise; clearQueue(): Promise; deleteQueueItem(itemId: string): Promise; interrupt(): Promise; listModels(folder?: string): Promise; getObjectInfo(nodeClass?: string): Promise; uploadImage(file: Buffer, filename: string): Promise<{ name: string; }>; downloadImage(filename: string, subfolder?: string, type?: string): Promise; getOutputFiles(promptId: string): Promise>; } //# sourceMappingURL=api.d.ts.map