import type { SetTimePayload, SetBboxPayload } from './types'; /** * Generic action to set the time. * * @param payload: SetTimePayload; * { * sourceId: string; // Source where the new time value originates from * value: string; // ISO 8601 string time value like "2010-10-01T00:00:00Z" * } */ export declare const setTime: import("@reduxjs/toolkit").ActionCreatorWithPayload; /** * Generic action to set the bounding box. * * @param payload: SetBboxPayload; * * { * sourceId: string; // Source where the new time value originates from * bbox: { // Bbbox object * left: number; * bottom: number; * right: number; * top: number; * }; * srs: string; // Projection string according to EPSG, e.g. (EPSG:3857 == Mercator) * } */ export declare const setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload;