import { DOMFactory } from './factory'; import { Recipe } from './template'; export declare function cache(factory: DOMFactory): { get: (strings: TemplateStringsArray, ...values: unknown[]) => Recipe; clear: () => void; };