import { ICommandAction } from './ICommandAction.cjs';

declare class GenerateAction implements ICommandAction {
    handleAction(schema: string, options: any, ...args: any[]): Promise<void>;
    genImportTemplate(templatePath: string, sourcePath: string): Promise<void>;
    genReportTemplate(templatePath: string, sourcePath: string): Promise<void>;
}

export { GenerateAction };
