export default class Notifications {
    static get CLIENT(): {
        client: boolean;
    };
    static get USER(): {
        user: boolean;
    };
    static get ALL(): {
        client: boolean;
        user: boolean;
    };
}
