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