import { Scope } from './Scope';
export interface CacheableOptions {
    scope: Scope;
    ttl?: number;
    cacheUndefined: boolean;
    getStore?(): unknown;
}
export declare function optionsWithDefaults(options?: Partial<CacheableOptions>): CacheableOptions;
