import * as React from "react"; import { FormContext } from "src/components/LajiForm"; import type { components } from "../../../generated/api.d"; type NamedPlace = components["schemas"]["store-namedPlace"]; type Props = { onPlaceSelected: (place: NamedPlace) => void; onPlaceDeleted: (place: NamedPlace) => void; place: NamedPlace; translations: FormContext["translations"]; deleting?: boolean; }; export declare const Popup: React.ForwardRefExoticComponent>; export {};