UNPKG

@promptbook/remote-client

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

14 lines (13 loc) 367 B
import { ReactNode } from 'react'; /** * * @private internal subcomponent used by various components */ export declare function Modal({ children, onClose, className, }: { children: ReactNode; onClose: () => void; className?: string; }): import("react").ReactPortal; /** * TODO: Use this also for feedback modal in Chat component - Make modals DRY */