import { IkasRaffle } from "../../../storefront-models/src"; /** * Checks whether a raffle is currently available based on its status and date range. * * @ai-category Raffle * * @param raffle - The raffle object to check availability for. * @returns True if the raffle is active and the current time falls within its start and end date range, false otherwise. * * @example * ```typescript * import { isRaffleAvailable } from "@ikas/bp-storefront"; * * if (isRaffleAvailable(raffle)) { * console.log("Raffle is currently available."); * } * ``` */ export declare function isRaffleAvailable(raffle: IkasRaffle): boolean | 0 | null | undefined;