import React from 'react'; import { Coordinate } from '../types'; interface Props { polygon: Coordinate[]; onSubmit: (value: string) => void; } export declare const ExportPolygonForm: React.FC; export {};