UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

12 lines (11 loc) 299 B
import { ReactNode } from 'react'; /** * Handles modal. * * @private internal subcomponent used by various components */ export declare function Modal({ children, onClose, className, }: { children: ReactNode; onClose: () => void; className?: string; }): import("react").ReactPortal;