import type { GetRaffleEstimation } from './types/getRaffleEstimation.types.js'; /** * Method responsible for getting the raffle estimation price. * * @param raffleId - Raffle identifier. * @param query - Query with parameters to fetch raffle estimation. * @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 getRaffleEstimation: GetRaffleEstimation; export default getRaffleEstimation;