import type { AllCallOptions, AuthorizationPayload, GetUserBlockedAccountIdsResponse } from "../models";
type GetUserBlockedAccountIdsOptions = Pick<AllCallOptions, "limit" | "offset">;
/**
 * A call to this function will retrieve the list of blocked `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 getUserBlockedAccountIds: (authorization: AuthorizationPayload, options?: Partial<GetUserBlockedAccountIdsOptions>) => Promise<GetUserBlockedAccountIdsResponse>;
export {};
