/**
 * This enum represents a set of flags - use bitwise operators to check which of
 * these match your value.
 * @see {@link https://bungie-net.github.io/#/components/schemas/Ignores.IgnoreStatus}
 */
export declare const IgnoreStatus: {
    readonly NotIgnored: 0;
    readonly IgnoredUser: 1;
    readonly IgnoredGroup: 2;
    readonly IgnoredByGroup: 4;
    readonly IgnoredPost: 8;
    readonly IgnoredTag: 16;
    readonly IgnoredGlobal: 32;
};
