import { GetGatekeeperSquadArguments, GetGatekeeperSquadResponse, SendInviteArguments, SendInviteResponse, GetGatekeeperInvitesResponse, GetGatekeeperInvitesArguments, AcceptInviteArguments, AcceptInviteResponse, GetMyInvitesArguments, GetMyInvitesResponse, CheckInArguments, CheckInResponse } from 'services/hatching/types'; export declare const sendInvite: ({ eggs, ethSignature, gatekeeperId, token, env, }: SendInviteArguments) => Promise; export declare const acceptInvite: ({ eggId, inviteId, speciesId, monsterName, token, env, }: AcceptInviteArguments) => Promise; export declare const getMyInvites: ({ eggId, env, }: GetMyInvitesArguments) => Promise; export declare const getGatekeeperSquad: ({ gatekeeperId, env, }: GetGatekeeperSquadArguments) => Promise; export declare const getGatekeeperInvites: ({ gatekeeperId, env, }: GetGatekeeperInvitesArguments) => Promise; export declare const getSpecies: ({ env, backgroundId, }: any) => Promise; export declare const isHatched: ({ token, env, }: any) => Promise; export declare const checkIn: ({ env, token, topics, }: CheckInArguments) => Promise; export declare const labTransform: ({ env, token, monsterId, name, image, animationUrl, description, blurhash, attributes, }: any) => Promise; export declare const getBackground: ({ env, token, }: any) => Promise;