import { AbstractControl } from "@angular/forms"; import { Schema } from "./schema"; export declare class State { /** * form control handling this state */ control: AbstractControl; /** * name of the state */ name: string; /** * schema for this state */ schema: Schema; /** * current value */ value: any; }