import type { CommerceInvoiceView } from '../types/payment'; export interface InvoiceRowActionsProps { invoice: CommerceInvoiceView; /** * Authenticated download via your API (e.g. `GET /api/commerce/invoices/{id}/download`). * Used when there is no public PDF URL on the invoice row. */ onDownloadInvoice?: (invoice: CommerceInvoiceView) => Promise; } export declare function InvoiceRowActions({ invoice, onDownloadInvoice }: InvoiceRowActionsProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=InvoiceRowActions.d.ts.map