export interface InvoicingAddressRowProps { addLabel?: string; label?: string; /** * Card-less context (e.g. a `plain` detail section): fill the container width * and draw a full border, since there's no surrounding card to provide the * top border / width. Defaults to the form behavior (capped width, no top * border — the enclosing card supplies both). */ standalone?: boolean; onOpen: () => void; } /** * Address entry point that opens the shared Address screen. Shows the current * (formatted) address with an edit affordance, or an "add" button when empty. * Mirrors the vendor mailing-address row. */ export declare function InvoicingAddressRow({ addLabel, label, standalone, onOpen, }: Readonly): import("react/jsx-runtime").JSX.Element; export default InvoicingAddressRow;