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