import { InvoiceType } from '../../enums/invoice-type.enum.js';

declare class CancellationInvoice {
    /**
     * @inheritDoc
     */
    readonly type: InvoiceType.CANCELLATION;
}

export { CancellationInvoice };
