import type { SharedSystemPromptTarget } from './SharedSystemPromptTarget'; /** * Targets for a share operation. * * POST and PUT require at least one target: a share needs two or more agents. * DELETE may omit `targets` entirely, which removes every current consumer. */ export type SharedSystemPromptRequest = { targets: Array; };