import * as pino from 'pino'; export interface CacheResult { synthDriver: string; resynthDriver: string; } export declare const createCache: (log: pino.BaseLogger, params: { buildDirectory: string; builtEntryPoint: string; }) => Promise<{ synthDriver: string; resynthDriver: string; }>;