import { StateData } from '../types'; export default class State { private id; private state; constructor(id?: string); get(type: string): StateData; update(type: string, data: any): void; }