import React, { JSX } from 'react'; import './Checkbox.scss'; export type ShowCheckedUsing = 'checkmark' | 'circle'; export type CheckboxProps = React.InputHTMLAttributes & { children?: JSX.Element | string; checkIcon?: ShowCheckedUsing; dataTestId?: string; }; export declare const Checkbox: React.FC;