import type { Actions, Node, NodePluginArgs, Reporter } from 'gatsby';
export declare const downloadTildaAssets: (gatsbyFunctions: {
    actions: {
        createNode: Actions['createNode'];
        createNodeField: Actions['createNodeField'];
        touchNode: Actions['touchNode'];
    };
    createNodeId: NodePluginArgs['createNodeId'];
    store: NodePluginArgs['store'];
    cache: NodePluginArgs['cache'];
    getNode: NodePluginArgs['getNode'];
    getNodes: NodePluginArgs['getNodes'];
    reporter: Reporter;
    assetNodes: Node[];
}) => Promise<void>;
