/** * Computes a stable client identifier from an access token. * - If a token is provided, returns `client:`. * - If no token is provided, returns a per-request unique `anon:`. */ export declare function computeClientId(accessToken?: string): string;