import { DocumentNode } from 'gatsby/graphql';
import { PluginConfig } from '../gatsby-node';
import { GatsbyNode } from '../types/gatsby';
import { TypeMap } from './remoteGraphQLSchema';
export declare type ExampleValues = {
    [key: string]: GatsbyNode;
};
export declare const getExampleValues: (ast: DocumentNode, config: PluginConfig, typeMap: TypeMap) => ExampleValues;
