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