/** * Used by the Rollup pre-processor * * @param contents - Full file contents * @param filePath - absolute path to file * * @todo - format errors a la eslint */ export declare const renderModule: (contents: string, filePath: string, opts?: { [k: string]: any; }) => Promise<{ $js: string; $js_runtime: string; }>;