/**
* Thrown when a method is invoked at an illegal or inappropriate time.
*/declareclassIllegalStateErrorextendsError{
/**
* Creates a new error.
*
* @param message - an explanation of what went wrong
*/constructor(message: string);
}
export { IllegalStateError };