/**
 * Apply the configuration of a template to the root directory.
 * @param param0
 */
declare const applyConfigurationTask: ({ assetsDirectory, root, noTask, }: {
    assetsDirectory: string;
    root: string;
    noTask: boolean;
}) => Promise<void>;

export { applyConfigurationTask };
