declare class UnknownStateError extends Error {
    private state;
    constructor(state: string, info: string);
}
export default UnknownStateError;
