import React from 'react';
type IUseAutomateControlResponse = {
    handleClickMediaButton: (playing: boolean, event?: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
    handleMouseOver: React.MouseEventHandler<HTMLDivElement>;
    handleMouseOut: React.MouseEventHandler<HTMLDivElement>;
    isPlaying: boolean;
};
type IUseAutomateControlParams = {
    isPlayingInitially?: boolean;
    onClickMediaButton?: (playing: boolean, event?: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
};
export declare const useAutomateControl: ({ isPlayingInitially, onClickMediaButton, }: IUseAutomateControlParams) => IUseAutomateControlResponse;
export {};
