/** * @typedef {Object} OverlayProps * @property {ConstructorParameters[0]} options Overlay constructor options. */ /** * @param {OverlayProps | Object} props Overlay props. */ export default function Overlay(props: OverlayProps | { [x: string]: any; }): import("react").ReactElement<{ /** * Overlay constructor options. */ options: ConstructorParameters[0]; cls: typeof OLOverlay; } | { cls: typeof OLOverlay; }, string | import("react").JSXElementConstructor>; export type OverlayProps = { /** * Overlay constructor options. */ options: ConstructorParameters[0]; }; import OLOverlay from 'ol/Overlay.js'; //# sourceMappingURL=Overlay.d.ts.map