import { PluginSystemActions } from "../createPluginSystemActions.js"; import { WriteProjectFileArgs } from "./writeProjectFile.js"; /** * Arguments for `upsertGlobalContentTypes()`. */ export type UpsertGlobalTypeScriptTypesArgs = { filename?: string; actions: PluginSystemActions; } & Omit; /** * Creates a globally accessible TypeScript file containing types representing * the Prismic repository's content. * * @returns The file path to the written file. */ export declare const upsertGlobalTypeScriptTypes: (args: UpsertGlobalTypeScriptTypesArgs) => Promise;