import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Checkbox = "ax-checkbox"; type CheckboxProps = BoxProps & { "description"?: string | number | false | true; "indeterminate"?: false | true; "asChild"?: false | true; "as-child"?: false | true; "name"?: string; "onCheckedChange"?: (checked: boolean) => void; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Checkbox]: CheckboxProps & Omit<(JSXBase.IntrinsicElements["input"]), keyof CheckboxProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Checkbox]: CheckboxProps & Omit<(ComponentPropsWithoutRef<"input">), keyof CheckboxProps>; } } } export { Checkbox }; export type { CheckboxProps };