/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md. */ import type { ManualPageEntry } from "./types.js"; /** * Discovers manual test pages. A manual test is a single full HTML document named * `.manual.html` located under a package's `manual/` directory. Plain `.html` * files are treated as static fixtures and are never collected here. * * The `patterns` are package root globs, for example `packages/*`. */ export declare function collectManualPages(patterns: Array, workspaceRoot: string): Map;