import type { DatabaseAdapter } from "appwrite-utils-helpers"; import type { InteractiveCLI } from "../../interactiveCLI.js"; export declare function importFileFromPath(adapter: DatabaseAdapter, filePath: string, databaseId: string, tableId: string): Promise; export declare function importFilePromptMissing(adapter: DatabaseAdapter, database: any, filePath: string, targetDb?: string, targetTable?: string): Promise; export declare const importFileCommands: { importFile(cli: InteractiveCLI): Promise; };