import { GameRelatedStore } from 'onix-chess';
import * as React from 'react';
export interface CapturesProps {
    store: GameRelatedStore;
    piece: string;
}
export declare class Captures extends React.Component<CapturesProps, {}> {
    /**
     * constructor
     */
    constructor(props: CapturesProps);
    private moveToPly;
    private pieceClick;
    render(): JSX.Element | null;
}
