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