import { Jid } from '../../../types/tags.js'; interface CheckResponseRaw { exists: boolean; jid: string; number: string; } interface CheckResponseItem { exists: boolean; jid: Jid; number: string; } type CheckOptions = string | string[]; type CheckResponse = CheckResponseItem[]; export type { CheckOptions, CheckResponse, CheckResponseItem, CheckResponseRaw };