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