///
import { BaseComponent } from '../../Utilities';
import { ICheckProps } from './Check.types';
export declare class CheckBase extends BaseComponent {
static defaultProps: ICheckProps;
shouldComponentUpdate(newProps: ICheckProps): boolean;
render(): JSX.Element;
}