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