import { FC } from 'react'; import { ActorProfile } from './useActorProfiles'; export type ActorIdentityVariant = 'cell' | 'inline' | 'chip'; export interface ActorIdentityProps { profile: ActorProfile; variant?: ActorIdentityVariant; className?: string; /** * Hide the UUID drill-down. Use for very compact lists where the row itself * links to a detail page that exposes the ID. */ hideIdDrilldown?: boolean; } /** * Renders an actor (user / app / service) using resolved identity. The UUID * is hidden behind a `
` drill-down — never shown as the primary * heading. Pair with {@link useActorProfiles} to resolve raw actorIds. */ export declare const ActorIdentity: FC; //# sourceMappingURL=ActorIdentity.d.ts.map