import type { TODO_any } from '../../../../utils/organization/TODO_any';
import type { TeamToolResult } from './TeamToolResult';
/**
 * Parses TEAM tool result payload and validates teammate metadata presence.
 *
 * @param resultRaw - Decoded tool result payload.
 * @returns TEAM payload or `null` when shape does not match.
 *
 * @private function of toolCallParsing
 */
export declare function parseTeamToolResult(resultRaw: TODO_any): TeamToolResult | null;
