import type { ServiceApiParams, ServiceDataParams } from '../../common'; export type ConsultCarnetBatchParams = { identifier: string; }; export type ConsultCarnetBatchResponse = { IsProcessed: boolean; Message: string; IdentifierLot: string; }; export declare function consultCarnetBatch({ api }: ServiceApiParams, { params }: ServiceDataParams<{ params: ConsultCarnetBatchParams; }>): Promise;