import { EventInvite } from "../../interfaces/models/Event"; import { PaginatedResponse } from "../../interfaces/PaginatedResponse"; export interface FetchInviteesProps { eventId: string; page?: number; limit?: number; } /** Host-only invitee (guest) list. Non-hosts get 403. */ declare function useFetchInvitees(): (props: FetchInviteesProps) => Promise>; export default useFetchInvitees;