export interface SkillLoaderRoots { readonly workingDirectory: string; readonly homeDirectory?: string | undefined; } /** * Find a skill whose triggers include the given input string. * Returns the skill body (markdown content to inject as prompt), or null. */ export declare function loadSkillByTrigger(input: string, roots: SkillLoaderRoots): string | null; //# sourceMappingURL=skill-loader.d.ts.map