import { Command } from 'commander'; export declare function attachSharedFlags(command: Command): Command; export declare function attachTranslateFlags(command: Command): Command; /** * Attaches flags necessary for validating a project * @param command * @returns The command with the validate flags attached */ export declare function attachValidateFlags(command: Command): Command; /** * Attaches flags necessary for translating a project * @param command * @returns The command with the translate flags attached */ export declare function attachInlineTranslateFlags(command: Command): Command;