import { Event } from "../../interfaces/models/Event"; export interface AddInviteProps { eventId: string; /** The user to invite (userId only — never a foreignId). Idempotent. */ userId: string; } declare function useAddInvite(): (props: AddInviteProps) => Promise; export default useAddInvite;