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