import type { string_agent_url } from '../../types/typeAliases';
/**
 * Parsed TEAM teammate entry.
 *
 * @private
 */
export type TeamTeammate = {
    url: string_agent_url;
    label: string;
    instructions: string;
};
/**
 * Options for parsing TEAM commitment content.
 *
 * @private
 */
export type ParseTeamCommitmentOptions = {
    strict?: boolean;
};
/**
 * Parses TEAM commitment content into teammates with instructions.
 *
 * @private
 */
export declare function parseTeamCommitmentContent(content: string, options?: ParseTeamCommitmentOptions): TeamTeammate[];
/**
 * Note: [💞] Ignore a discrepancy between file name and entity name
 */
