interface SimpleRequestParams { url: string; method?: 'GET' | 'POST' | 'PUT' | 'DELETE'; body?: unknown; headers?: Record; } export default function simpleRequest({ url, method, body, headers }: SimpleRequestParams): Promise; export {};