import { CustomTypeModel, SharedSliceModel } from "@prismicio/client";
import type { GatsbyGraphQLObjectType, NodePluginArgs } from "gatsby";
import type { PluginOptions } from "../types";
type CustomTypeModelToGraphQLTypeArgs = {
    model: CustomTypeModel;
    sharedSliceModels: SharedSliceModel[];
    gatsbyNodeArgs: NodePluginArgs;
    pluginOptions: PluginOptions;
};
export declare const customTypeModelToGraphQLType: (args: CustomTypeModelToGraphQLTypeArgs) => GatsbyGraphQLObjectType;
export {};
