import PropTypes from 'prop-types'; import { ReactElement } from "react"; export interface CheckboxProps { checked?: boolean; disabled?: boolean; children?: ReactElement | string; onChange?: (checked: boolean) => void; className?: string; handleLabelClick?: boolean; iconProps?: any; [props: string]: any; } export declare const Checkbox: { ({ checked, disabled, children, onChange, className, handleLabelClick, iconProps, ...props }: CheckboxProps): import("@emotion/react/jsx-runtime").JSX.Element; propTypes: { checked: PropTypes.Requireable; disabled: PropTypes.Requireable; children: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; className: PropTypes.Requireable; handleLabelClick: PropTypes.Requireable; }; };