import { CustomCurrencyNumberFormat, Invoice, InvoiceComponent } from "../../../types"; import { ProductItemConfig } from "../InvoiceDetails"; export interface InvoicePdfProps extends Pick { customCurrencyNumberFormat?: CustomCurrencyNumberFormat; dimensionsMap?: Record>; hideBreakdown?: boolean; invoiceData?: Invoice; invoiceDate?: string; planId?: string; prepaidId?: string; productItemConfiguration?: Record; } export declare const InvoicePdf: ({ invoiceDate, invoiceData, planId, prepaidId, onError, onLoadingChange, customCurrencyNumberFormat, currency, ...props }: InvoicePdfProps) => import("react/jsx-runtime").JSX.Element;