import type { GetRaffleParticipation } from './types/getRaffleParticipation.types.js'; /** * Method responsible for getting the raffle participation by its id. * * @param raffleId - Raffle identifier. * @param participationId - Participation identifier to get. * @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 getRaffleParticipation: GetRaffleParticipation; export default getRaffleParticipation;