import { IconProps } from '../../../icon';
interface LabelProps {
    label?: string;
    prefix?: string;
    highlightText?: string;
    triggerVariant: boolean;
}
export declare const Label: ({ label, prefix, highlightText, triggerVariant }: LabelProps) => JSX.Element;
interface LabelTagProps {
    labelTag?: string;
    highlightText?: string;
    triggerVariant: boolean;
}
export declare const LabelTag: ({ labelTag, highlightText, triggerVariant }: LabelTagProps) => JSX.Element | null;
interface DescriptionProps {
    description?: string;
    highlightText?: string;
    triggerVariant: boolean;
}
export declare const Description: ({ description, highlightText, triggerVariant }: DescriptionProps) => JSX.Element | null;
interface TagsProps {
    tags?: ReadonlyArray<string>;
    highlightText?: string;
    triggerVariant: boolean;
}
export declare const Tags: ({ tags, highlightText, triggerVariant }: TagsProps) => JSX.Element | null;
interface FilteringTagProps {
    filteringTags?: ReadonlyArray<string>;
    highlightText?: string;
    triggerVariant: boolean;
}
export declare const FilteringTags: ({ filteringTags, highlightText, triggerVariant }: FilteringTagProps) => JSX.Element | null;
export declare const OptionIcon: (props: IconProps) => JSX.Element | null;
export {};
