import { FetchState } from './useFetch'; interface GetOptions extends Omit { } export declare const useGet: (url: string | null | undefined, options?: GetOptions) => FetchState; export {};