import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export declare class Tags {
    constructor(properties: Tags);
}
export interface InsightRuleProperties {
    RuleState: Value<string>;
    RuleBody: Value<string>;
    RuleName: Value<string>;
    Tags?: Tags;
}
export default class Inner_InsightRule extends ResourceBase<InsightRuleProperties> {
    static Tags: typeof Tags;
    constructor(properties: InsightRuleProperties);
}
