declare class State {
    __classname__: string;
    Id: string | null;
    Name: string | null;
    Type: string | null;
    Produce: boolean | null;
    Color: string | null;
    DefaultRouteTo: string | null;
    constructor(Id?: string | null, Name?: string | null, Type?: string | null, Produce?: boolean | null, Color?: string | null, DefaultRouteTo?: string | null);
}

export { State };
