import { FeatureFlagModuleOptions } from '../interfaces/feature-flag-options.interface'; export declare class FlagEventPublisher { private readonly options; private readonly eventEmitter?; constructor(options: FeatureFlagModuleOptions, eventEmitter?: any | undefined); emit(event: string, payload: Record): void; }