import { InternalCallbackArgs, Response, InternalHookArgsSwr, InternalHookArgsCallback } from './request'; import { SWRError } from './types'; import { RequestParams } from '@siafoundation/request'; export declare function useGetSwr(args: InternalHookArgsSwr): import("swr").SWRResponse> | undefined>; type GetFunc = { get: (args: InternalCallbackArgs) => Promise>; }; export declare function useGetFunc(args: InternalHookArgsCallback): GetFunc; export {};