import type { PersistStoreProps } from '../types.js'; import type { ChainOrderState } from './types.js'; export declare const maxGridItemsToShow = 10; export declare const maxChainsToShow: number; export declare const maxChainsToOrder: number; export declare const createChainOrderStore: ({ namePrefix }: PersistStoreProps) => import("zustand").UseBoundStore, "setState" | "persist"> & { setState(partial: ChainOrderState | Partial | ((state: ChainOrderState) => ChainOrderState | Partial), replace?: false | undefined): unknown; setState(state: ChainOrderState | ((state: ChainOrderState) => ChainOrderState), replace: true): unknown; persist: { setOptions: (options: Partial>) => void; clearStorage: () => void; rehydrate: () => Promise | void; hasHydrated: () => boolean; onHydrate: (fn: (state: ChainOrderState) => void) => () => void; onFinishHydration: (fn: (state: ChainOrderState) => void) => () => void; getOptions: () => Partial>; }; }>;