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