import type { PostprocessContext } from "../context/postprocess.js"; /** * Detect the use of specific metadata types in the file and add them to the file's dependencies. * Must happen: * - after identifier definitions have been added to the file contents, as it depends on checking the source. * - before imports and exports are added */ export declare const addMetadataDependenciesToFiles: (context: PostprocessContext) => void;