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