import type { EnvironmentAdapter } from "#environments/adapter"; import type { LocalEnvironment } from "#environments/model"; export declare class LocalAdapter implements EnvironmentAdapter { #private; constructor(environment: LocalEnvironment, cwd: string); path(path: string): string; command(argv: string[]): { file: string; args: string[]; cwd: string; }; }