export interface AgentSkillManifest { directoryName: string; name: string; description: string; instructions: string; } export declare function getProjectSkillsDirectoryPath(customComponentsDir: string): string; export declare function listProjectSkillManifests(customComponentsDir: string, pluginCustomFolderPaths?: string[]): Promise; export declare function listSkillManifests(customComponentsDir: string, pluginCustomFolderPaths?: string[]): Promise; export declare function loadSkillManifest(skillName: string, customComponentsDir: string, pluginCustomFolderPaths?: string[]): Promise; export declare function loadSkillMarkdown(skillName: string, customComponentsDir: string, pluginCustomFolderPaths?: string[]): Promise;