import React from 'react'; import type { CSS } from '../theme/stitches.config'; import { UseCheckboxProps } from './use-checkbox'; import CheckboxGroup from './checkbox-group'; interface Props extends UseCheckboxProps { label?: string; className?: string; children?: React.ReactNode; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type CheckboxProps = NativeAttrs & Props & { css?: CSS; }; declare type CheckboxComponent = React.ForwardRefExoticComponent & React.RefAttributes> & { Group: typeof CheckboxGroup; }; declare const _default: CheckboxComponent; export default _default;