/**
* AuthenticationError is thrown from login function which is dependency of remote server
*
* @public exported from `@promptbook/core`
*/
export declareclassAuthenticationErrorextendsError{
readonly name = "AuthenticationError";
constructor(message: string);
}