/**
 * Type describing a function for visiting server endpoints.
 * @author Benedikt Arnarsson
 */
type VisitServerEndpoint = (opts: {
    path: string;
    method?: ('GET' | 'POST' | 'DELETE' | 'PUT');
    params?: {
        [key in string]: any;
    };
}) => Promise<any>;
export default VisitServerEndpoint;
