import { type DingtalkResult } from './assert'; export type SimpleRequestInit = { method: string; headers: Record; body?: RequestInit['body']; signal?: AbortSignal; }; export declare function simple_post_json(input: RequestInfo | URL, body?: RequestInit['body'] | undefined, init?: Omit): Promise; export declare function simple_json(input: RequestInfo | URL, init?: RequestInit | undefined): Promise;