import { PlayOptions } from '@gamepark/react-client'; import { ButtonHTMLAttributes, FC, ReactNode } from 'react'; export type PlayMoveButtonConfirmation = { text?: ReactNode; cancelText?: ReactNode; }; export type PlayMoveButtonProps = { move: any; moves?: any[]; onPlay?: () => void; confirmation?: PlayMoveButtonConfirmation; auto?: number; } & PlayOptions & ButtonHTMLAttributes; export declare const PlayMoveButton: FC;