import type { GatsbyCache, GatsbyGraphQLObjectType, NodePluginSchema } from "gatsby";
import { PluginOptions } from "../types";
type BuildImageObjectTypeConfig = {
    schema: NodePluginSchema;
    cache: GatsbyCache;
    pluginOptions: PluginOptions;
};
export declare const buildImageObjectType: (config: BuildImageObjectTypeConfig) => GatsbyGraphQLObjectType;
export {};
