import { FC } from 'react'; interface PlayerNavButtonProps { direction: 'left' | 'right' | 'up' | 'down'; onClick: () => void; ariaLabel?: string; disabled?: boolean; } declare const PlayerNavButton: FC; export default PlayerNavButton;