import { Command } from 'commander'; import { UploadedMediaBundle } from './media-bundle.model'; import { UploadedMetadataBundle } from './metadata-bundle.model'; export declare function generate(authorPath: string, seriesPath: string): Promise<{ metadata: UploadedMetadataBundle['cid']; media: UploadedMediaBundle['cid']; fullSlug: string; totalSupply: number; publicUrl: string; mintingUrl: string; upsertDraftResponseJson: unknown; }>; declare const GenerateCommand: Command; declare const GenerateAllCommand: Command; export { GenerateAllCommand, GenerateCommand };