import { Rule } from "../Rule"; import { Contact } from "./Contact"; import { Fx } from "./Fx"; import { Risk } from "./Risk"; export interface Creatable { name: string; code: string; risk: Risk; rules?: Rule[]; contact?: Contact.Creatable; groups?: string[]; fx?: Fx; } export declare namespace Creatable { const type: import("isly/dist/cjs/object").IslyObject; }