UNPKG

swap-chat-react

Version:
16 lines (15 loc) 524 B
import React, { PropsWithChildren } from 'react'; import { AppTypeEnum } from '../../context/ChatContext'; interface IProps { visible: boolean; appType?: AppTypeEnum; closeModal: () => void; modalHeader?: React.ReactNode; style?: React.CSSProperties; className?: string; dialogClassName?: string; title?: string; rightBtn?: React.ReactNode; } export declare const Modal: React.MemoExoticComponent<(props: PropsWithChildren<IProps>) => React.ReactPortal | null>; export {};