import { type StoreApi } from 'zustand'; /** * Helper function to create type-safe zustand store to manage timeframe state. * @param initialState - Initial state of the timeframe store * @param actions - Actions to manipulate the timeframe store * @internal */ export declare function createTimeframeStore(initialState: S, actions: (set: StoreApi['setState']) => A): import("zustand").UseBoundStore>;