import { default as React, CSSProperties } from 'react';

type PlayerButtonProps = {
    children?: React.ReactNode;
    handlePress?: () => void | undefined;
    handleRelease?: () => void | undefined;
    handleArrowPress?: (dir: string) => boolean;
    focusKey: string;
    className?: string;
    style?: CSSProperties;
    disabled?: boolean;
};
declare function PlayerButton(props: PlayerButtonProps): import("react/jsx-runtime").JSX.Element;
export default PlayerButton;
