/**
 * Decorator for paths that should be cached, it can be applied to a string or an array of strings property to
 * cache the path or paths for the current class
 */
export declare function CachedFilesGetter<TClass, TProperty extends string | string[]>(): (target: (this: TClass) => TProperty, context: ClassGetterDecoratorContext<TClass, TProperty>) => (this: TClass) => TProperty;
