import type { CommerceInvoiceView } from '../types/payment'; /** Browser view (Stripe hosted page or PDF in new tab). */ export declare function getInvoiceViewUrl(invoice: CommerceInvoiceView): string | null; /** Direct PDF / file URL for download when the API exposes one. */ export declare function getInvoiceDownloadUrl(invoice: CommerceInvoiceView): string | null; export declare function invoiceDownloadFilename(invoice: CommerceInvoiceView): string; export declare function triggerBrowserDownload(url: string, filename: string): void; export declare function downloadBlobAsFile(blob: Blob, filename: string): void; //# sourceMappingURL=invoiceUrls.d.ts.map