export declare class Cache {
    private readonly store;
    get<T>(key: string, ttl: number, unit: 'MINUTES' | 'SECONDS', callback: () => Promise<T>): Promise<any>;
}
