import { Event } from "../../interfaces/models/Event"; export interface AddHostProps { eventId: string; /** The user to grant host on the event. */ userId: string; } declare function useAddHost(): (props: AddHostProps) => Promise; export default useAddHost;