/** * MCP participant roles. * * Used in {@link Annotations} to specify the intended audience * for a resource. * * @example * ```typescript * import { Role, createAnnotations } from '@vinkius-core/mcp-fusion'; * * const annotations = createAnnotations({ * audience: [Role.USER, Role.ASSISTANT], * priority: 0.9, * }); * ``` */ export declare enum Role { /** Human user */ USER = "USER", /** AI assistant */ ASSISTANT = "ASSISTANT" } //# sourceMappingURL=Role.d.ts.map