export interface SnapshotCreateOptions { databaseIdentity: string; output: string; compress?: boolean; } export interface SnapshotRestoreOptions { input: string; databaseIdentity: string; force?: boolean; } export interface DatabaseInfo { identity: string; address: string | null; name: string | null; path: string; sizeBytes: number; modifiedAt: Date; } export interface SnapshotInfo { path: string; databaseIdentity: string; createdAt: Date; sizeBytes: number; compressed: boolean; } //# sourceMappingURL=index.d.ts.map