import type { ServiceApiParams, ServiceDataParams } from '../../common'; export type CancelCarnetParams = { identifier: string; }; export type CancelCarnetBankSlipsType = { IdTransaction: string; isCancelled: boolean; Message: string; BankSlipNumber: string; }; export type CancelCarnetResponse = { BankSlips: CancelCarnetBankSlipsType[]; }; export declare function cancelCarnet({ api }: ServiceApiParams, { params }: ServiceDataParams<{ params: CancelCarnetParams; }>): Promise;