import { UseFetchOptions } from './types'; /** Hook for executing fetch requests (GET). */ export declare const useFetch: (url: string, opts: UseFetchOptions) => [import("./types").FetchState, () => void];