import { InternalCallbackArgs, InternalHookArgsCallback, Response, After, InternalHookArgsWithPayloadSwr } from './request'; import { SWRError } from './types'; import { RequestParams } from '@siafoundation/request'; export declare function usePutSwr(args: InternalHookArgsWithPayloadSwr): import("swr").SWRResponse> | undefined>; type PutFunc = { put: (args: InternalCallbackArgs) => Promise>; }; export declare function usePutFunc(args: InternalHookArgsCallback, after?: After): PutFunc; export {};