import { Event } from "../../interfaces/models/Event"; export interface FetchEventProps { eventId: string; /** Associations to expand, e.g. ["user", "space", "files", "userRsvp"]. */ include?: string | string[]; } declare function useFetchEvent(): (props: FetchEventProps) => Promise; export default useFetchEvent;