import { FetchConfig } from "./fetch-config"; export interface WhoIAm { username: string; } /** * Retrieve logged-in user's username via legacy API. */ export declare function getWhoAmI(opts: FetchConfig): WhoIAm;