import { JSXBase } from '@stencil/core/internal'; import { ComponentPropsWithoutRef } from 'react'; import { BoxProps } from './Box.js'; import '../types-B4RnVKcG.js'; declare const Sidebar = "ax-sidebar"; type SidebarProps = BoxProps & { "defaultExpanded"?: false | true; "default-expanded"?: false | true; "expanded"?: false | true; "onExpandedChange"?: (expanded: boolean) => void; "asChild"?: false | true; "as-child"?: false | true; }; declare module "@stencil/core" { namespace JSX { interface IntrinsicElements { [Sidebar]: SidebarProps & Omit<(JSXBase.IntrinsicElements["div"]), keyof SidebarProps>; } } } declare module "react" { namespace JSX { interface IntrinsicElements { [Sidebar]: SidebarProps & Omit<(ComponentPropsWithoutRef<"div">), keyof SidebarProps>; } } } export { Sidebar }; export type { SidebarProps };