import { SettingsService } from '@sprucelabs/spruce-skill-utils';
export default class EventCacheService {
    protected settings: SettingsService<string>;
    constructor(settings: SettingsService);
    getLastSyncOptions(): any;
    setLastSyncCache(options: {
        shouldSyncOnlyCoreEvents?: boolean | null;
        shouldOnlySyncRemoteEvents?: boolean | null;
    }): void;
    setListenerCache(value: Record<string, any>): void;
    clearListenerCache(): void;
    getListenerCache(): any;
}
