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