import { ErrorUnion, OkUnion } from '../outputs'; /** * Deletes a profile photo. If something changes, updateUser will be sent * @param {Object} params * @param {string} [params.profilePhotoId] - Identifier of the profile photo to delete * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type DeleteProfilePhotoMethod = (params: DeleteProfilePhotoParams, state?: Record) => Promise; export interface DeleteProfilePhotoParams { /** Identifier of the profile photo to delete */ profilePhotoId?: string; }