import { DateLike } from "../../../common/types.js";
//#region src/namespaces/thr/common/types.d.ts
declare namespace ThrNs {
  type InReplyTo = {
    ref: string;
    href?: string;
    type?: string;
    source?: string;
  };
  type Link<TDate extends DateLike> = {
    count?: number;
    updated?: TDate;
  };
  type Item = {
    total?: number;
    inReplyTos?: Array<InReplyTo>;
  };
}
//#endregion
export { ThrNs };