import type { MentionItem, MentionType } from '@yoopta/mention'; export type MentionThemeConfig = { /** Show avatar in mention element */ showAvatar?: boolean; /** Show type badge */ showTypeBadge?: boolean; /** Custom colors per mention type */ typeColors?: Partial>; }; export type MentionItemRenderProps> = { item: MentionItem; index: number; selected: boolean; onSelect: () => void; }; export declare const DEFAULT_TYPE_COLORS: Record; //# sourceMappingURL=types.d.ts.map