import { ChatId } from '../../../types/tags.mjs'; interface FetchProfilePictureRequest { number: ChatId; } interface FetchProfilePictureResponse { profilePictureUrl: string; } type FetchProfilePictureOptions = FetchProfilePictureRequest; export type { FetchProfilePictureOptions, FetchProfilePictureRequest, FetchProfilePictureResponse };