/** * A parsed function activation entry — name plus optional arguments. */ export interface FunctionCall { name: string; args: Record; } /** * Parse `|fn|` function activation syntax from user messages. * * Matches `|fn|` patterns at the start of any line (multiline). * Mid-line `|fn|` is NOT activation and is left untouched. * * Supports parameterized activation: * - Positional: |review:security,strict| → mapped to param order in frontmatter * - Key-value: |review focus=security severity=strict| * - Mixed: |plan| |review:security| → plan has no args, review has one */ export declare function parseFunctionActivation(text: string): { functions: string[]; calls: FunctionCall[]; cleanedText: string; }; //# sourceMappingURL=parser.d.ts.map