export interface CreateQuoteParticipantInput { personId: string; role?: "traveler" | "booker" | "decision_maker" | "finance" | "other"; isPrimary?: boolean; } /** Add / remove travelers (participants / PAX) on a quote. */ export declare function useQuoteParticipantMutation(): { create: import("@tanstack/react-query").UseMutationResult<{ id: string; quoteId: string; personId: string; role: string; isPrimary: boolean; createdAt: string; }, Error, { quoteId: string; input: CreateQuoteParticipantInput; }, unknown>; remove: import("@tanstack/react-query").UseMutationResult; };