import type { NodePluginArgs } from "gatsby"; import type { FileSystemNode } from "gatsby-source-filesystem"; type CreateCachedRemoteFileNodeArgs = { url: string; gatsbyNodeArgs: NodePluginArgs; }; export declare const createCachedRemoteFileNode: (args: CreateCachedRemoteFileNodeArgs) => Promise; export {};