import type { CustomTypeModelField, SharedSliceModel } from "@prismicio/client";
import type { GatsbyGraphQLType, NodePluginArgs } from "gatsby";
import type { PluginOptions } from "../types";
type FieldModelsRecordToGraphQLTypeArgs = {
    path: string[];
    models: Record<string, CustomTypeModelField>;
    sharedSliceModels: SharedSliceModel[];
    gatsbyNodeArgs: NodePluginArgs;
    pluginOptions: PluginOptions;
};
export declare const fieldModelsRecordToGraphQLType: (args: FieldModelsRecordToGraphQLTypeArgs) => GatsbyGraphQLType;
export {};
