import React from 'react';
import { type BoxProps } from '../Box/Box';
import { type FunFeatureListItemProps } from './FunFeatureListItem';
interface FunFeatureListProps {
    items: FunFeatureListItemProps[];
    /** if is expandable, the first `items` entry is used as the always displayed item, the rest will become collapsible */
    isExpandable?: boolean;
    disabled?: boolean;
    withBackgroundContainer?: boolean;
    /** Whether background should be applied only to individual items. Defaults to false since background is applied to the container by default */
    withBackgroundItem?: boolean;
    gapBetweenItems?: Extract<BoxProps['gap'], string>;
    onExpanded?: () => void;
}
export declare const FunFeatureList: ({ items, isExpandable, disabled, withBackgroundContainer, withBackgroundItem, gapBetweenItems, onExpanded, }: FunFeatureListProps) => React.JSX.Element;
export {};
