import { LayoutType, Margin, Size } from '../util/types'; type ChartLayoutState = { layoutType: LayoutType; width: number; height: number; margin: Margin; /** * How much is the chart zoomed in. * Used for scaling the mouse coordinates to the chart coordinates. */ scale: number; }; export declare const setMargin: import("@reduxjs/toolkit").ActionCreatorWithNonInferrablePayload<"chartLayout/setMargin">, setLayout: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload, setChartSize: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload, setScale: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload; export declare const chartLayoutReducer: import("redux").Reducer; export {};