interface UpdatePictureRequest { picture: string; } interface UpdatePictureResponse { update: "success" | "error"; } type UpdatePictureOptions = UpdatePictureRequest; export type { UpdatePictureOptions, UpdatePictureRequest, UpdatePictureResponse };