import { RuleInterface } from "./interfaces"; import { DataTypeEnum } from "./enumerations"; export declare class Rule implements RuleInterface { id?: number; name: string; aliases?: string[]; label: string; description?: string; sampleValue?: string; statedAs?: string; dataType: DataTypeEnum; constructor(rule: RuleInterface); expectedFacts(): string[]; getRule(): string; }