import React, { type ReactNode } from 'react';
import { type BoxProps } from '../Box/Box';
export interface FunFeatureListItemProps extends BoxProps {
    text?: ReactNode;
    tooltip?: ReactNode;
    value?: string | string[];
    prefix?: string;
    icon: ReactNode;
}
export declare const FunFeatureListItem: ({ text, tooltip, value, prefix, icon, ...boxProps }: FunFeatureListItemProps) => React.JSX.Element;
