interface IStates { notInitialized: string; initializing: string; initialized: string; } declare const states: IStates; export { states };