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