import { TypedDocumentNode } from '@graphql-typed-document-node/core'; import { TokenRefreshResponse, TokenRefreshVariables, TokenCreateResponse, TokenCreateVariables, PasswordResetResponse, PasswordResetVariables, ExternalAuthenticationURLResponse, ExternalAuthenticationURLVariables, ExternalObtainAccessTokenResponse, ExternalObtainAccessTokenVariables } from './types.js'; declare const accountErrorFragment: TypedDocumentNode<{ [key: string]: any; }, { [key: string]: any; }>; declare const TOKEN_REFRESH: TypedDocumentNode; declare const TOKEN_CREATE: TypedDocumentNode; declare const PASSWORD_RESET: TypedDocumentNode; declare const ExternalAuthenticationURL: TypedDocumentNode; declare const ExternalObtainAccessTokens: TypedDocumentNode; export { ExternalAuthenticationURL, ExternalObtainAccessTokens, PASSWORD_RESET, TOKEN_CREATE, TOKEN_REFRESH, accountErrorFragment };