import type { PageDataRecord } from "./types.js"; /** * Loads data source records from a JSON file. * Expects either: * - An array of { url: string, data: Record } * - An object with a "pages" key containing the array */ export declare function loadDataSource(filePath: string): Promise; /** * Matches a page URL against data source records. * Supports exact match and basic glob patterns (* for single segment, ** for any path). */ export declare function matchPageToData(pageUrl: string, records: PageDataRecord[]): PageDataRecord | undefined; //# sourceMappingURL=data-source-loader.d.ts.map