import type { GetRaffle } from './types/getRaffle.types.js'; /** * Method responsible for getting a raffle by its id. * * @param raffleId - Raffle identifier. * @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 getRaffle: GetRaffle; export default getRaffle;