import type { Component } from '../../../types'; interface Template { compile: (opts: { publishPath: string; componentPath: string; componentPackage: any; ocPackage: any; minify: boolean; verbose: boolean; production: boolean | undefined; }, cb: (err: Error | null, data: Component) => void) => void; } export default function requireTemplate(template: string, options: { compiler: boolean; componentPath: string; }): Template; export {};