export interface InvoicingAddRowProps { label: string; testId: string; /** * Card-less context: fill the container width and draw a full border, since * there's no surrounding card to supply the top border / width. Defaults to * the in-card behavior (capped width, no top border). */ standalone?: boolean; onClick: () => void; } /** * Full-width "add another…" affordance used at the foot of a repeating form * group (shipping address, price points). Shared so every one of them reads as * the same control. */ export declare function InvoicingAddRow({ label, onClick, standalone, testId, }: Readonly): import("react/jsx-runtime").JSX.Element; export default InvoicingAddRow;