import type { SaveRaffleParticipantQueryParams } from "../../../storefront-api/src/__api/mutations/saveRaffleParticipant"; import type { ListRaffleMetadataQueryParams } from "../../../storefront-api/src/__api/queries/listRaffleMetadata"; import type { ListStorefrontRaffleQueryParams } from "../../../storefront-api/src/__api/queries/listStorefrontRaffle"; import { APIResponse } from "../../../storefront-api-client/src"; import { IkasRaffle, IkasRaffleMetaData, IkasRaffleParticipant } from "../../../storefront-models/src"; export declare function apiListStorefrontRaffle(params: ListStorefrontRaffleQueryParams): Promise>; export declare function apiSaveRaffleParticipant(params: SaveRaffleParticipantQueryParams): Promise>; export declare function apiListRaffleMetaData(params: ListRaffleMetadataQueryParams): Promise>; export declare function apiListRaffleParticipants(): Promise>;