import type { NoticeLevel } from "../thinking.js"; import { type VerboseLevel } from "../thinking.js"; export declare function extractVerboseDirective(body?: string): { cleaned: string; verboseLevel?: VerboseLevel; rawLevel?: string; hasDirective: boolean; }; export declare function extractNoticeDirective(body?: string): { cleaned: string; noticeLevel?: NoticeLevel; rawLevel?: string; hasDirective: boolean; }; export declare function extractStatusDirective(body?: string): { cleaned: string; hasDirective: boolean; }; export type { NoticeLevel, VerboseLevel };