export declare const ALL_SKILLS_ALLOWLIST: string[]; export type AgentSkillsMode = 'all' | 'none' | 'custom'; export type AgentSkillsConfig = { mode: AgentSkillsMode; allowed: string[]; }; export type AgentSkillAllowlist = { mode: 'all'; } | { mode: 'none'; } | { mode: 'custom'; names: Set; }; export declare function normalizeSkillNames(input: unknown): string[]; export declare function parseSkillAllowlistValues(input: unknown): AgentSkillAllowlist | undefined; export declare function readAgentSkillAllowlist(agentId?: string): AgentSkillAllowlist | undefined; export declare function normalizeAgentSkillsConfig(mode: AgentSkillsMode, skills: unknown): AgentSkillsConfig; export declare function diskAllowlistForConfig(config: AgentSkillsConfig): string[]; //# sourceMappingURL=allowlist.d.ts.map