import type { ExecAsk, ExecSecurity, ExecTarget } from "../../infra/exec-approvals.js"; import type { ElevatedLevel, ReasoningLevel, ThinkLevel, TraceLevel, VerboseLevel } from "./directives.js"; import type { QueueDropPolicy, QueueMode } from "./queue/types.js"; export type InlineDirectives = { cleaned: string; hasThinkDirective: boolean; thinkLevel?: ThinkLevel; rawThinkLevel?: string; hasVerboseDirective: boolean; verboseLevel?: VerboseLevel; rawVerboseLevel?: string; hasTraceDirective: boolean; traceLevel?: TraceLevel; rawTraceLevel?: string; hasFastDirective: boolean; fastMode?: boolean; rawFastMode?: string; hasReasoningDirective: boolean; reasoningLevel?: ReasoningLevel; rawReasoningLevel?: string; hasElevatedDirective: boolean; elevatedLevel?: ElevatedLevel; rawElevatedLevel?: string; hasExecDirective: boolean; execHost?: ExecTarget; execSecurity?: ExecSecurity; execAsk?: ExecAsk; execNode?: string; rawExecHost?: string; rawExecSecurity?: string; rawExecAsk?: string; rawExecNode?: string; hasExecOptions: boolean; invalidExecHost: boolean; invalidExecSecurity: boolean; invalidExecAsk: boolean; invalidExecNode: boolean; hasStatusDirective: boolean; hasModelDirective: boolean; rawModelDirective?: string; rawModelProfile?: string; rawModelRuntime?: string; hasQueueDirective: boolean; queueMode?: QueueMode; queueReset: boolean; rawQueueMode?: string; debounceMs?: number; cap?: number; dropPolicy?: QueueDropPolicy; rawDebounce?: string; rawCap?: string; rawDrop?: string; hasQueueOptions: boolean; }; export declare function parseInlineDirectives(body: string, options?: { modelAliases?: string[]; disableElevated?: boolean; allowStatusDirective?: boolean; }): InlineDirectives;