import { Decision } from './decision'; import { TopLevelNode, Typed } from './index'; export declare class DecisionList extends TopLevelNode { private readonly localId; private content; constructor(localId: string); decision(localId: string, state: string): Decision; toJSON(): Typed; }