export declare class MethodIdentifier<T extends object> {
    private instance;
    constructor(instance: T);
    doesNotIncludeEvent(event: string, methods: string[]): boolean;
    doesIncludeEvent(event: string): boolean;
    private matchEvent;
    getApplicableMethods(event: string, methods: string[]): string[];
    instanceMethodNames(): string[];
    private isNotProperty;
    private isNotAccessor;
    private getPropertyNames;
}
