export interface TagProps { name: string; color: string; } export interface TagInputProps { tags: TagProps[]; selectedTags: TagProps[]; onAddTag: (tag: TagProps) => void; isPreviewMode: boolean; } declare const TagInput: ({ tags, selectedTags, onAddTag, isPreviewMode, }: TagInputProps) => import("react/jsx-runtime").JSX.Element | null; export { TagInput };