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