import { PluginOptions, GatsbyFile, MarkdownNode } from '.';
export type GatsbyPluginArgs = {
    node: MarkdownNode;
    getNodesByType: (type: string) => GatsbyFile[];
    reporter: {
        info: (msg: string, error?: Error) => void;
    };
};
export declare const onCreateNode: ({ node, getNodesByType }: GatsbyPluginArgs, pluginOptions: PluginOptions) => void;
