/**
* Related timeout error.
*/exportdeclareclassTimeoutErrorextendsError {
readonlydata: any;
/**
* Throws when a connection or test do not executed in the specified time.
* @param message Custom message to this error
*/constructor(message?: string, data?: any);
}