import React from 'react'; export interface CheckboxProps extends React.HTMLAttributes { /** * Set the status of checkbox */ variant?: 'check' | 'minus' | 'plus'; /** * Set the size of checkbox */ size?: 'medium' | 'small' | 'large'; } export declare const Checkbox: React.FC;