import { ReactElement, ReactNode } from 'react'; import { BaseItemProps } from '@snack-uikit/list'; type Option = { tagLabel?: string; icon?: ReactElement; } & Pick; export type FunctionBadgeProps = { /** Иконка */ icon?: ReactNode; /** Вложенные опции */ options: Option[]; }; export declare function FunctionBadge({ icon, options }: FunctionBadgeProps): import("react/jsx-runtime").JSX.Element; export {};