import type { CommandPreset } from '../types/index.js'; export type PromptInjectionMethod = 'final-arg' | 'flag' | 'stdin'; export interface PreparedPresetLaunch { args: string[]; stdinPayload?: string; method: PromptInjectionMethod; } export declare const getPromptInjectionMethod: (preset: Pick) => PromptInjectionMethod; export declare const getPromptFlag: (preset: Pick) => string | undefined; export declare const describePromptInjection: (preset: Pick) => string; export declare const preparePresetLaunch: (preset: Pick, prompt?: string) => PreparedPresetLaunch;