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