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