import { Parse } from '../../specification';
import { ComponentConfig } from '../component';
export declare class CommandManager {
    protected templateFile: string;
    protected method: string;
    protected customerCommandName?: string;
    protected deployParams: any;
    constructor(templateFile: string, method: string, customerCommandName?: string, params?: any);
    assemblyProjectConfig(parse: Parse, projectName: string, parsedObj: any): Promise<ComponentConfig>;
    init(): Promise<void>;
}
