import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface ThreatIntelSetProperties {
    Format: Value<string>;
    Activate: Value<boolean>;
    DetectorId: Value<string>;
    Name?: Value<string>;
    Location: Value<string>;
}
export default class Inner_ThreatIntelSet extends ResourceBase<ThreatIntelSetProperties> {
    constructor(properties: ThreatIntelSetProperties);
}
