import type { MutationIntent } from '../core/index.js'; import type { AdapterContext, ConsequenceAdapter } from './types.js'; export interface ShellCommandInput { command: string; cwd?: string; } export declare class ShellCommandAdapter implements ConsequenceAdapter { source: "shell"; parse(input: ShellCommandInput | string, context?: AdapterContext): MutationIntent[]; } export declare function shellCommandToMutation(command: string, context?: AdapterContext): MutationIntent; //# sourceMappingURL=shell.d.ts.map