import type { mapTypes } from '@opengeoweb/store'; import type { TimeBounds } from '@opengeoweb/time-slider'; /** * Returns time bounds from the given dimension. If no time dimension given, current time is returned as default */ export declare const getTimeBounds: (dimensions: mapTypes.Dimension[]) => TimeBounds; export declare const calculateNewAnimationEndTime: (newTimeInMilliseconds: number, dataStartTimeInMilliseconds: number, dataEndTimeInMilliseconds: number, animationDuration: number) => number; export declare const calculateNewAnimationTimeBounds: (newTime: number, animationStartTime: string, animationEndTime: string, dataStartTime: number, dataEndTime: number) => { newAnimationStartTime: number; newAnimationEndTime: number; };