import { ReactNode } from "react"; import { GetExchangeV1PublicKlinesQueryParams } from "../../services"; interface SelectedSymbolState { selectedSymbol?: { baseAsset: string; quoteAsset: string; symbol: string; }; interval: Exclude; } export declare const selectedSymbolStore: import("react-principal").Store; export declare const setStoredSeletedSymbol: () => Promise; export declare const changeSelectedSymbol: (selectedSymbol: SelectedSymbolState["selectedSymbol"]) => { type: symbol; payload: { selectedSymbol: { baseAsset: string; quoteAsset: string; symbol: string; } | undefined; }; }; export declare const changeInterval: (interval: SelectedSymbolState["interval"]) => { type: symbol; payload: { interval: "OneMinute" | "FiveMinutes" | "FifteenMinutes" | "ThirtyMinutes" | "OneHour" | "FourHour" | "OneDay" | "OneWeek" | "OneMonth"; }; }; export declare const SelectedSymbolStoreProvider: ({ children, }: { children: ReactNode; }) => JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map