import React, { InputHTMLAttributes } from 'react'; import { CheckboxStyledProps } from './styled'; export type CheckboxProps = CheckboxStyledProps & InputHTMLAttributes; export declare const Checkbox: React.ForwardRefExoticComponent & React.RefAttributes>;