import type { CustomTypeModel, PrismicDocument, SharedSliceModel } from "@prismicio/client"; import { NodePluginArgs } from "gatsby"; import type { PluginOptions } from "../types"; type CreateDocumentNodesArgs = { documents: PrismicDocument[]; customTypeModels: CustomTypeModel[]; sharedSliceModels: SharedSliceModel[]; gatsbyNodeArgs: NodePluginArgs; pluginOptions: PluginOptions; }; export declare const createDocumentNodes: (args: CreateDocumentNodesArgs) => Promise; export {};