export interface ComputedStyleSnapshot { path: string; styles: Record; } /** * Batch-read `getComputedStyle` for elements under `root` (or `document.body` when omitted). * Paths are relative to `root` so they match cheerio paths for `root.innerHTML` fragments. */ export declare function snapshotComputedStylesFromDocument(doc?: Document, root?: Element | null): ComputedStyleSnapshot[]; //# sourceMappingURL=computed-style-snapshot.d.ts.map