import React from 'react'; export interface CheckboxProps extends Omit, 'type' | 'onChange'> { label?: string; description?: string; onChange?: (checked: boolean) => void; animate?: boolean; } export declare const Checkbox: React.ForwardRefExoticComponent>;