export declare type RequestOptionParams = {
    url: string;
    json?: boolean;
    method: string;
    headers: {
        Authorization: string;
    };
    body?: any;
    qs?: any;
};
export declare type RenderObjectSchema = {};
