import type { Logger } from '../logger'; import * as clean from './clean'; export default function local(): { clean: typeof clean; cleanup(compressedPackagePath: string): Promise; compress(input: string, output: string): Promise; getComponentsByDir: (componentsDir: string, componentsToRun?: string[]) => Promise; init(options: { componentName: string; logger: Logger; componentPath: string; templateType: string; }): Promise; mock: (params: { targetType: "plugin"; targetValue: string; targetName: string; }) => Promise; package: (options: import("./package-components").PackageOptions) => Promise; }; export type Local = ReturnType;