import { IAction, Path } from './types'; declare function useGet(): Partial; declare const useSend: () => (fn: (item: T) => T, field?: Path | undefined) => void; declare const useDispatch: () => (value: IType) => void; declare const createActions: () => ({ field, actions, }: IAction) => IActionsState; declare const useSelect: (fn: (item: T) => S) => S; declare const api: ({ body, method, config, revalidate, path, backgroundRevalidate, }: import("./api/types").IApiAction) => Promise>; export { useSelect, useGet, useDispatch, useSend, createActions, api };