/** * Authenticated principal. * * Unlike `/user/me`, this route supports both interactive users and scoped * service-token machine identities. CLI `whoami` uses it as the canonical * non-interactive smoke test for `SYLPHX_TOKEN=svc_*`. */ import type { AuthenticatedPrincipal } from '@sylphx/contract'; import type { Client } from './client.js'; export declare const get: (client: Client) => Promise; //# sourceMappingURL=principal.d.ts.map