import { Cache } from 'hexo-util'; declare class Locals { cache: InstanceType; getters: Record any>; constructor(); get(name: string): any; set(name: string, value: any): this; remove(name: string): this; invalidate(): this; toObject(): Record; } export = Locals;