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