import { Actions, NodePluginArgs } from 'gatsby'; declare type CreateContentNodeArgs = { actions: Pick; createNodeId: NodePluginArgs['createNodeId']; content: any; type: string; }; export declare const createContentNode: ({ actions: { createNode }, createNodeId, content, type, }: CreateContentNodeArgs) => void; export {};