import { CheckInArguments, FilterGetCheckinsLeaderboard, GetFeedEventsArguments, GetFeedEventsResponse, GetMapFilterArguments, RespondToEventArguments } from 'services/eventsInfo/types'; import { ENV } from '.'; export declare const getAll: ({ env }: any) => Promise; export declare const getAllEventsZlib: ({ env }: { env?: ENV | undefined; }) => Promise; export declare const getById: ({ env, eventId }: any) => Promise; export declare const getByIdForAccount: ({ env, eventId, authToken }: any) => Promise; export declare const getMap: ({ env, events, coordinates, }: GetMapFilterArguments) => Promise; export declare const checkIn: ({ env, eventId, coordinates, authToken, }: CheckInArguments) => Promise; export declare const getFeedEvents: ({ env, authToken, limit, page, type, eventType, appIds, }: GetFeedEventsArguments) => Promise; export declare const respondToEvent: ({ env, eventId, response, authToken, }: RespondToEventArguments) => Promise; export declare const getStatsEvents: ({ env, authToken, }: any) => Promise; export declare const getCheckinsAndGatekeepersAwarded: ({ env, }: any) => Promise; export declare const getChannelPlatforms: ({ env, }: any) => Promise; export declare const getCheckinsLeaderboard: ({ env, appId, sortBy, smartIds, }: FilterGetCheckinsLeaderboard) => Promise; export declare const getStampRecipients: ({ env, id, }: any) => Promise; export declare const createEvent: ({ env, event, }: any) => Promise; export declare const updateEvent: ({ env, event, }: any) => Promise; export declare const createEventSegment: ({ env, segment, }: any) => Promise; export declare const updateEventSegment: ({ env, segment, }: any) => Promise;