import { Http, HttpHeaderType } from "../uni/uni_http"; import { Resonpse } from "./data_types"; export declare class BaseModel { http: Http; constructor(http: Http); httpGet(url: string, data?: any, header?: Record): Promise>; httpListGet(url: string, data?: any, header?: Record): Promise>; httpPost(url: string, data?: any, header?: Record): Promise>; httpPostJson(url: string, data?: any, header?: Record): Promise>; }