import type { AuthSessionStoreKey } from '../../resources/enums';
/**
 * Represents an error that is thrown when an authentication does not exist in the client's session store
 */
declare class AuthenticationMissingError extends Error {
    /**
     * The authentication type that does not exist
     */
    type: AuthSessionStoreKey;
    /**
     * @param type The authentication type that does not exist
     */
    constructor(type: AuthSessionStoreKey);
}
export default AuthenticationMissingError;
