import React from "react";
type propsDefined = {
    showModal: boolean;
    title: string;
    contentElement: any;
    bottomElement?: any;
    closeOnClickModal?: boolean;
    closeModal?: () => void;
};
declare function YhwOpenLayerRN({ showModal, title, contentElement, bottomElement, closeOnClickModal, closeModal }: propsDefined): React.JSX.Element;
export default YhwOpenLayerRN;
