import * as plugins from './mod.plugins.js';
export declare const getTemplatePath: (templateNameArg: string) => string;
/**
 * receives a template name and returns wether there is a corresponding template
 */
export declare const isTemplate: (templateNameArg: string) => Promise<boolean>;
export declare const getTemplate: (templateNameArg: string) => Promise<plugins.smartscaf.ScafTemplate>;
export declare const run: (argvArg: any) => Promise<void>;
