import { Rule } from './Rule';
export interface RuleSet {
    stateId?: string;
    rules?: any[];
    rule?: Rule;
    [key: string]: any;
}
