import * as React from 'react'; import { ProjectionInfo } from '@gisosteam/aol/ProjectionInfo'; import { Extent } from 'ol/extent'; export interface IProjectionProps { code: string; wkt?: string; lonLatValidity?: Extent; name?: string; remarks?: string; } export declare class Projection extends React.Component { projectionInfo: ProjectionInfo; constructor(props: IProjectionProps); render(): React.ReactNode; }