import { z } from 'zod'; import { BaseCommand } from './base-command'; declare const flagsSchema: z.ZodObject<{ id: z.ZodOptional; rawOutput: z.ZodOptional; file: z.ZodOptional; }, "strip", z.ZodTypeAny, { file?: string | undefined; id?: string | undefined; rawOutput?: boolean | undefined; }, { file?: string | undefined; id?: string | undefined; rawOutput?: boolean | undefined; }>; export declare class Execute extends BaseCommand> { needsCommunityPackages: boolean; needsTaskRunner: boolean; init(): Promise; run(): Promise; catch(error: Error): Promise; } export {};