import type { WorkflowDefinition } from "./types.js";
export interface ResolvedSkill {
    content: string;
    origin: string;
}
export declare function resolveSkill(name: string, workflow: WorkflowDefinition, workflowFilePath: string): ResolvedSkill | null;
