interface Options { base: string; path: string; method?: string; query?: Record; headers?: Record; body?: Record; signal?: AbortSignal; } export default function request(options: Options): Promise; export {};