import { Event } from "../../interfaces/models/Event"; export interface RemoveInviteProps { eventId: string; /** The invitee to remove. Also drops their RSVP and revokes access. */ userId: string; } declare function useRemoveInvite(): (props: RemoveInviteProps) => Promise; export default useRemoveInvite;