import { FC, ReactNode } from 'react'; declare type HistoryStoreProps = { children: ReactNode; /** * The maximum number of executed operations to store. * @default 20 */ maxHistoryLength?: number; }; /** * The functions send the entire operation so users can customize their own application and get * access to the operation plus any additional props they added for their needs (i.e., build their * own functions that may save to a backend instead of localStorage and might need an id property * added to the `QueryStoreItem`) */ export declare const HistoryStore: FC; export declare const useHistory: () => any; /** * Actions are functions used to update values in your store. They are static and never change. * @see https://tkdodo.eu/blog/working-with-zustand#separate-actions-from-state */ export declare const useHistoryActions: () => any; export {};