import React from 'react'; import { mapActions } from '@opengeoweb/store'; export interface PlayButtonConnectProps { mapId: string; isAnimating?: boolean; animationStartTime?: string; animationEndTime?: string; isDisabled?: boolean; mapStartAnimation?: typeof mapActions.mapStartAnimation; mapStopAnimation?: typeof mapActions.mapStopAnimation; timeStep?: number; linkedMapAnimationInfo?: { isAnimating: boolean; id: string; }; } export declare const PlayButtonConnect: React.ComponentType;