export declare type HttpMethod = 'GET' | 'POST';
export declare type IHttpResponse<T> = {
    ok: boolean;
    status: number;
    statusText: string;
    elapsed: number;
    data: T;
};
export declare type IHttpHeaders = {
    [key: string]: string;
};
export declare type IHttpEvent = {
    id: string;
    stage: 'START' | 'COMPLETE';
    method: HttpMethod;
    headers: Headers;
    url: string;
    data?: any;
    response?: IHttpResponse<any>;
};
