import { Component } from "react";
import { PlayPauseEvent } from "../../eventbus/events/playPause";
interface Props {
}
interface State {
    paused: boolean;
    cameraControlsShowing: boolean;
}
export default class CompactPlayControls extends Component<Props, State> {
    constructor(props: Props);
    componentWillUnmount(): void;
    setPlayPause: () => void;
    onPlayPause: ({ paused }: PlayPauseEvent) => void;
    showCameraControls: () => void;
    hideCameraControls: () => void;
    render(): JSX.Element;
}
export {};
