import { Event } from "../../interfaces/models/Event"; export interface RemoveHostProps { eventId: string; /** The host to remove. Rejected if it would leave the event with no hosts. */ userId: string; } declare function useRemoveHost(): (props: RemoveHostProps) => Promise; export default useRemoveHost;