import * as React from 'react';
import { SelectionBoxProps, SelectionBoxState } from './Table';
export default class SelectionBox extends React.Component<SelectionBoxProps, SelectionBoxState> {
    constructor(props: SelectionBoxProps);
    getCheckState(props: SelectionBoxProps): boolean;
    render(): JSX.Element;
}
