import React from 'react';
import { CheckboxProps } from './interfaces';
interface InternalProps extends CheckboxProps {
    withoutLabel?: boolean;
    tabIndex?: -1;
}
declare const InternalCheckbox: React.ForwardRefExoticComponent<InternalProps & React.RefAttributes<CheckboxProps.Ref>>;
export default InternalCheckbox;
