import { ErrorUnion, UserProfilePhotosUnion } from '../outputs'; /** * Returns the profile photos of a user. The result of this query may be outdated: some * photos might have been deleted already * @param {Object} params * @param {number} [params.userId] - User identifier * @param {number} [params.offset] - The number of photos to skip; must be non-negative * @param {number} [params.limit] - Maximum number of photos to be returned; up to * 100 * @param {Object} state * @returns {UserProfilePhotosUnion | ErrorUnion} */ export declare type GetUserProfilePhotosMethod = (params: GetUserProfilePhotosParams, state?: Record) => Promise; export interface GetUserProfilePhotosParams { /** User identifier */ userId?: number; /** The number of photos to skip; must be non-negative */ offset?: number; /** Maximum number of photos to be returned; up to 100 */ limit?: number; }