import { FunctionComponent } from 'react'; import { Coordinate } from 'types'; interface Props { coordinates: Coordinate[]; hasError: boolean; } export declare const BoundaryPolygon: FunctionComponent; export {};