import { JSX } from 'react'; import { InputWrapperBaseProps } from '../../internals/InputWrapper'; export interface InputCheckboxProps extends Omit, Omit, "type" | "value"> { /** * Icon component * Example: `` */ icon?: JSX.Element; hideIconOnDesktop?: boolean; /** * Additional `Element` to be rendered when the input is checked */ checkedElement?: JSX.Element; children?: React.ReactNode; } export declare const InputCheckbox: import('react').ForwardRefExoticComponent>;