import React from 'react'; import { MinervaProps } from '../layout'; declare type BaseProps = MinervaProps & React.InputHTMLAttributes; export interface CustomCheckboxProps { children?: React.ReactNode; checkColor?: string; } export declare type CheckboxProps = CustomCheckboxProps & BaseProps; export declare const Checkbox: React.ForwardRefExoticComponent & React.RefAttributes>; export default Checkbox;