export declare class MockRequest {
    private method;
    private url;
    private data;
    private options;
    private resp_fn;
    private response;
    private fragments;
    constructor(method: string, url: string, data: any, options: any);
    map(fn: (response: any) => void): this;
    subscribe(data: (value: {}) => void, error: (error: {}) => void, complete: () => void): any;
    private getFragments(url);
}
