import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ inputDir: z.ZodDefault; truncateTables: z.ZodDefault; keyFile: z.ZodOptional; skipMigrationChecks: z.ZodDefault; skipTogglingForeignKeyConstraints: z.ZodDefault; }, "strip", z.ZodTypeAny, { inputDir: string; truncateTables: boolean; skipMigrationChecks: boolean; skipTogglingForeignKeyConstraints: boolean; keyFile?: string | undefined; }, { keyFile?: string | undefined; inputDir?: string | undefined; truncateTables?: boolean | undefined; skipMigrationChecks?: boolean | undefined; skipTogglingForeignKeyConstraints?: boolean | undefined; }>; export declare class ImportEntitiesCommand extends BaseCommand> { run(): Promise; catch(error: Error): void; } export {};