UNPKG

295 BTypeScriptView Raw
1import { UseQueryOptions, UseQueryResult } from 'react-query';
2
3export type CurrentRegion = {
4 code: string;
5 value: string;
6};
7
8declare function useCurrentRegion(
9 options?: UseQueryOptions<CurrentRegion, unknown>
10): UseQueryResult<CurrentRegion, unknown>;
11
12export default useCurrentRegion;