export interface InvoiceListOptions { /** Show arrow to sort invoices */ showSort: boolean; /** Hide the link to merchant account */ hideAccountUiLink: boolean; /** Changes the number of invoices display by pages */ pageSize: number; } /** * Entry point to display the invoice list of a product. * * @param context - context to load the invoice list, @see {@link https://docs.cloud.prestashop.com/5-prestashop-billing/#prerequisites} for further informations * @param domElementSelector - css selector to attach the list of invoice to the DOM * @param options? - options to customize invoice list display: page size, sortable column, link to merchant account */ export declare const initializeInvoiceList: (context: { [key: string]: unknown; }, domElementSelector: string, options?: InvoiceListOptions) => ZoidComponent;