import { Node } from 'gatsby';
import { PluginOptions } from '../types';
export declare function unstable_shouldOnCreateNode({ node }: {
    node: Node;
}): boolean;
export declare const onCreateNode: ({ node, actions, loadNodeContent, createNodeId, createContentDigest, reporter, }: any, { localeJsonSourceName }: PluginOptions) => Promise<void>;
