import type { PostRaffleParticipation } from './types/postRaffleParticipation.types.js'; /** * Method responsible for requesting a raffle participation to be sent to one of the user * contacts. * * @param raffleId - The identifier of the raffle. * @param data - Request data. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const postRaffleParticipation: PostRaffleParticipation; export default postRaffleParticipation;