import { ExtensionAPI } from "@earendil-works/pi-coding-agent"; //#region src/extensions/effort.d.ts type ThinkingLevel = 'off' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | 'max'; export declare function parseEffortLevel(args: string): ThinkingLevel | undefined; export declare function effortUsage(): string; export default function effortExtension(pi: ExtensionAPI): void; //#endregion //# sourceMappingURL=effort.d.cts.map