import type { PatchRaffleParticipation } from './types/patchRaffleParticipation.types.js'; /** * Method responsible for updating the raffle participation. * * @param raffleId - The identifier of the raffle. * @param participationId - Participation identifier to patch. * @param data - Patch Raffle Participation Data. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will be resolved when the call to the endpoint finishes. */ declare const patchRaffleParticipation: PatchRaffleParticipation; export default patchRaffleParticipation;