import type { AllCallOptions, AuthorizationPayload, GetUserFriendsRequestsResponse } from "../models"; type GetUserFriendsRequestsOptions = Pick; /** * A call to this function will retrieve the list of received friend requests `accountId` values * for the account the client is logged into. * * @param authorization An object containing your access token, typically retrieved with `exchangeAccessCodeForAuthTokens()`. * @param options Optional parameters for pagination (limit and offset). */ export declare const getUserFriendsRequests: (authorization: AuthorizationPayload, options?: Partial) => Promise; export {};