import type { Source } from "../types.js"; /** * Federal Register source. Fetches recent rules, proposed rules, agency * notices, and presidential documents matching a search term (default: * "artificial intelligence"). The Federal Register search is permissive — * results often include items only tangentially related — so the * orchestrator should treat new articles as candidates for review rather * than guaranteed plainstamp-relevant updates. * * Notices and presidential documents are included alongside rules and * proposed rules because much actionable AI regulatory activity (FCC * declaratory rulings, OCC bulletins, OMB memoranda, executive orders) * appears in those categories rather than in formal rulemaking. */ export declare function federalRegisterSource(opts?: { searchTerm?: string; perPage?: number; /** Override the default doc-type filter. Defaults to RULE + PRORULE + NOTICE + PRESDOCU. */ types?: ReadonlyArray<"RULE" | "PRORULE" | "NOTICE" | "PRESDOCU">; }): Source; //# sourceMappingURL=federal-register.d.ts.map