import React from 'react';
import { Point, TagInterface } from '../types';
interface PinPopupProps {
    position: Point;
    onSubmit: (selectedTags: TagInterface[], content?: string) => void;
    onCancel: () => void;
    availableTags: TagInterface[];
    initialTags?: TagInterface[];
    initialContent?: string;
}
export declare const PinPopup: React.FC<PinPopupProps>;
export {};
