import { default as React } from 'react'; type CheckBoxProps = Omit, 'type'> & { label?: React.ReactNode; subLabel?: React.ReactNode; }; export declare const CheckBox: ({ label, subLabel, ...props }: CheckBoxProps) => import("react/jsx-runtime").JSX.Element; export {};