import type { PageHookSource } from '@d-zero/puppeteer-page-scan'; /** * Frontmatter形式の設定ファイルを読み込み、URLペアリストとページフックの参照を返す * @param filePath - 設定ファイルのパス * @returns URLペアのリストとページフックのロード元情報 */ export declare function readConfig(filePath: string): Promise<{ pairList: [string, string][]; hooks: PageHookSource; }>;