import * as React from "react"; import { type SupplierAddress, type SupplierContactPoint, type SupplierNamedContact } from "../index.js"; export declare function ContactPointDialog({ open, onOpenChange, supplierId, contactPoint, onSuccess, }: { open: boolean; onOpenChange: (open: boolean) => void; supplierId: string; contactPoint?: SupplierContactPoint; onSuccess: () => void; }): React.JSX.Element; export declare function NamedContactDialog({ open, onOpenChange, supplierId, contact, onSuccess, }: { open: boolean; onOpenChange: (open: boolean) => void; supplierId: string; contact?: SupplierNamedContact; onSuccess: () => void; }): React.JSX.Element; export declare function AddressDialog({ open, onOpenChange, supplierId, address, onSuccess, }: { open: boolean; onOpenChange: (open: boolean) => void; supplierId: string; address?: SupplierAddress; onSuccess: () => void; }): React.JSX.Element;