import React from 'react'; import 'jb-modal'; import { JBModalWebComponent } from 'jb-modal'; import { EventProps } from './events-hook.js'; export type Props = EventProps & React.PropsWithChildren<{ className?: string; isOpen?: boolean; id?: string; }>; declare global { namespace JSX { interface IntrinsicElements { 'jb-modal': JBModalType; } interface JBModalType extends React.DetailedHTMLProps, JBModalWebComponent> { class?: string; } } } export declare const JBModal: React.ForwardRefExoticComponent>;