export interface PillCloudProps {
    activeTags?: string[];
    tags?: Array<{
        target?: string;
        title: string;
    }>;
    onTagEnable?: (tag: string) => void;
    onTagDisable?: (tag: string) => void;
}
export declare function PillCloud({ activeTags, tags, onTagEnable, onTagDisable, }: PillCloudProps): import("react/jsx-runtime").JSX.Element;
