import TypesInternal from "@prismicio/types-internal/lib/customtypes/index.js"; import { WriteCustomTypeFileArgs } from "./writeCustomTypeFile.js"; export type WriteCustomTypeModelArgs = Omit & { model: TypesInternal.CustomType; }; /** * Writes a CustomType model to the file system in the CustomType's CustomType * library. * * @returns The file path to the written model. */ export declare const writeCustomTypeModel: (args: WriteCustomTypeModelArgs) => Promise;