export type NegotiationStatus = 'match' | 'clash' | 'await' | 'unmet';
export type MatchingKey = string;
export type MatchingResponse = Record<MatchingKey, NegotiationStatus>;
export interface MatchingEvent {
    gill: MatchingKey;
    match: boolean;
}
//# sourceMappingURL=negotiation.d.ts.map