import type { WebhookEvent } from './WebhookEvent';
export declare type WebhookInvoiceEvent = (WebhookEvent & {
    /**
     * The store id of the invoice's event
     */
    storeId?: string;
    /**
     * The invoice id of the invoice's event
     */
    invoiceId?: string;
});
