import type { ServiceApiParams, ServiceDataParams } from '../../common'; export type ResendCarnetParams = { identifier: string; }; export type ResendCarnetResponse = true; export declare function resendCarnet({ api }: ServiceApiParams, { params }: ServiceDataParams<{ params: ResendCarnetParams; }>): Promise;