import type { IGuideResponse } from '../types/ParsedResponse.js'; import type { IRawResponse } from '../index.js'; import type { ObservedArray } from '../helpers.js'; import GuideSection from '../classes/GuideSection.js'; import GuideSubscriptionsSection from '../classes/GuideSubscriptionsSection.js'; export default class Guide { #private; contents: ObservedArray; constructor(data: IRawResponse); get page(): IGuideResponse; }