interface RequestProps { method: "POST" | "GET"; body: Record; authenticated: boolean; } declare const request: (uri: string, route: string, { method, body, authenticated }: RequestProps) => Promise; export { type RequestProps, request };