export interface AgentPresenceChipProps { /** Whether the agent is actively editing this element. */ active: boolean; /** Label text. Default: "AI editing" */ label?: string; /** Color. Default: "#00B5FF" */ color?: string; /** Additional CSS classes. */ className?: string; } export declare function AgentPresenceChip({ active, label, color, className, }: AgentPresenceChipProps): import("react").JSX.Element | null; //# sourceMappingURL=AgentPresenceChip.d.ts.map