import React from 'react'; import type { agentVerified_AtlaskitRovoAgentComponents$key } from './__generated__/agentVerified_AtlaskitRovoAgentComponents.graphql'; export type AgentVerifiedProps = AgentVerifiedIconProps & { agentRef: agentVerified_AtlaskitRovoAgentComponents$key | null; }; export declare const AgentVerified: ({ agentRef, adjacentTextSize, }: AgentVerifiedProps) => React.JSX.Element | null; export type AgentVerifiedIconProps = { /** * Height matches line-height of adjacent text for proper vertical alignment * when inline content wraps to multiple lines. */ adjacentTextSize?: 'body' | 'textLarge' | 'headingMedium' | 'headingLarge'; }; export declare const AgentVerifiedIcon: ({ adjacentTextSize, }: AgentVerifiedIconProps) => React.JSX.Element;