export type PresenceObjectPillRef = { showInitialsWithDelay: () => void; showDisplayName: () => void; showInitials: () => void; element: HTMLSpanElement | null; }; export type PresenceObjectPillProps = { backgroundColor: string; displayName: string; initials: string; isLast?: boolean; } & React.RefAttributes; export declare function PresenceObjectPill({ backgroundColor, displayName, initials, isLast, ref, }: PresenceObjectPillProps): import("react").JSX.Element; export declare namespace PresenceObjectPill { var displayName: string; } //# sourceMappingURL=PresenceObjectPill.d.ts.map