import type { EmailAddress } from '../../../util/schema-utils';
import type { UserDetails } from './types';
export declare function getAppDetails(token: string): Promise<UserDetails>;
export declare function getUserDetails(endpoint: string, token: string): Promise<UserDetails>;
export declare function getUserEmail(endpoint: string, token: string): Promise<EmailAddress | null>;
