type AgentMentionFileVisualKind = "back" | "document" | "code" | "markdown" | "image" | "video" | "folder"; declare function resolveAgentMentionFileVisualKind(input: { entryKind?: string | null; href?: string | null; mentionNavigation?: string | null; name?: string | null; path?: string | null; }): AgentMentionFileVisualKind; declare function resolveAgentMentionFileThumbnailUrl(input: { entryKind?: string | null; href?: string | null; name?: string | null; path?: string | null; thumbnailUrl?: string | null; }): string | undefined; export { type AgentMentionFileVisualKind, resolveAgentMentionFileThumbnailUrl, resolveAgentMentionFileVisualKind };