import type { HTMLAttributes, HTMLButtonAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLUListElement> {
    tags?: string[];
    knownTags?: string[];
    popupBg?: string;
    tagProps?: HTMLButtonAttributes;
    tagBadge?: string;
    addTagProps?: HTMLButtonAttributes;
}
declare const Tags: import("svelte").Component<Props, {}, "tags">;
type Tags = ReturnType<typeof Tags>;
export default Tags;
