/** * xpod import — Import data from databases or files into a Solid Pod. * * Supports: * --from-db Import from PostgreSQL or SQLite * --from-file Import from CSV/JSON/Turtle file * --from-pod Import from another Pod (future) */ import type { CommandModule } from 'yargs'; interface ImportArgs { 'from-db'?: string; 'from-file'?: string; 'from-pod'?: string; mapping?: string; to: string; url: string; email?: string; password?: string; 'dry-run': boolean; 'base-iri'?: string; format?: string; } export declare const importCommand: CommandModule; export {};