import IgnoredBy from './IgnoredBy';
/**
 * @export
 * @class Ignoring
 */
export declare class Ignoring {
    /**
     * @type {IgnoredBy}
     * @memberof Ignoring
     */
    ignoredBy?: IgnoredBy;
    /**
     * Describes why ignoredBy has been set to its current value.
     * @type {string}
     * @memberof Ignoring
     */
    ignoredByDescription?: string;
    constructor(obj?: Partial<Ignoring>);
}
export default Ignoring;
