import { PropsWithChildren, ReactElement } from 'react'; import { CheckboxProps, StatefulCheckboxProps } from './types'; export declare const Checkbox: { (props: PropsWithChildren): ReactElement; displayName: string; }; export declare const StatefulCheckbox: { (props: PropsWithChildren): ReactElement; displayName: string; };