import type { UnknownError } from '@livestore/common'; import { FileSystem, type HttpClient } from '@livestore/utils/effect'; import { Cli } from '@livestore/utils/node'; import * as SyncOps from '../sync-operations.ts'; export declare const exportCommand: Cli.Command.Command<"export", FileSystem.FileSystem | HttpClient.HttpClient, UnknownError | SyncOps.ConnectionError | SyncOps.ExportError, { readonly config: string; readonly storeId: string; readonly clientId: string; readonly output: string; }>; export declare const importCommand: Cli.Command.Command<"import", FileSystem.FileSystem | HttpClient.HttpClient, UnknownError | SyncOps.ConnectionError | SyncOps.ImportError, { readonly config: string; readonly storeId: string; readonly clientId: string; readonly force: boolean; readonly dryRun: boolean; readonly input: string; }>; export declare const syncCommand: Cli.Command.Command<"sync", FileSystem.FileSystem | HttpClient.HttpClient, UnknownError | SyncOps.ConnectionError | SyncOps.ExportError | SyncOps.ImportError, { readonly subcommand: import("effect/Option").Option<{ readonly config: string; readonly storeId: string; readonly clientId: string; readonly output: string; } | { readonly config: string; readonly storeId: string; readonly clientId: string; readonly force: boolean; readonly dryRun: boolean; readonly input: string; }>; }>; //# sourceMappingURL=import-export.d.ts.map