interface PostOptions<REQ> {
    url: string;
    checkword: string;
    sysSource: string;
    serviceCode: string;
    specialStr: string;
    body: REQ;
}
export declare function post<REQ, RES>(options: PostOptions<REQ>): Promise<RES>;
export {};
