import React from 'react'; import 'jb-modal'; import type { JBModalWebComponent } from 'jb-modal'; import { type EventProps } from './events-hook.js'; import type { JBElementStandardProps } from 'jb-core/react'; declare module "react" { namespace JSX { interface IntrinsicElements { 'jb-modal': JBModalType; } interface JBModalType extends React.DetailedHTMLProps, JBModalWebComponent> { } } } export declare const JBModal: React.ForwardRefExoticComponent & React.RefAttributes>; type ModalProps = EventProps & React.PropsWithChildren<{ isOpen?: boolean; }>; export type Props = ModalProps & JBElementStandardProps; export {};