import { PlayOptions } from '@gamepark/react-client'; import { ButtonHTMLAttributes, FC } from 'react'; export type UndoMovesButtonProps = { moves?: number; } & PlayOptions & ButtonHTMLAttributes; export declare const UndoMovesButton: FC;