export declare enum TriggerType {
    SET = 0,
    ADD = 1,
    DELETE = 2
}
export type Instrumentations = {
    [propName: string | symbol]: Function;
};
