import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const TableBody = "ax-table-body"; type TableBodyProps = BoxProps & { "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [TableBody]: TableBodyProps & Omit<(JSXBase.IntrinsicElements["tablesection"]), keyof TableBodyProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [TableBody]: TableBodyProps & Omit<(ComponentPropsWithoutRef<"tablesection">), keyof TableBodyProps>; } } } export { TableBody }; export type { TableBodyProps };