import { IBaseCacheOptions } from './IBaseCacheOptions';
export interface IFileSystemCacheOptions extends IBaseCacheOptions {
    readonly type: 'fs';
    readonly directory?: string;
    readonly subdirectories?: string;
    readonly compression?: boolean;
}
