export interface IDialogMapPointProps {
    modelValue: {
        lng: number;
        lat: number;
    };
    visible: boolean;
    city?: string;
    ak: string;
}
