import { ReactNode } from "react";
import "./Popovers.scss";
interface Props {
    children: ReactNode;
    modalBodyHeight: string;
    modalBodyWidth: string;
    content: string | ReactNode;
    triggerShow: Boolean;
    externalClassName?: any[];
    closeFunc?: Function | any;
}
declare const Popovers: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<unknown>>;
export default Popovers;
