import { Dispatch, SetStateAction } from 'react';
import { ServiceResponseData } from './interfaces';
export declare const useRequest: <T = any>(defaultValue?: T) => [ServiceResponseData<T>, Dispatch<SetStateAction<ServiceResponseData<T>>>];
