interface Props {
    title: string;
    name: string;
    description?: string;
    items: string[];
    imageUrl: string;
    textColor?: string;
    iconColor?: string;
    lineColor?: string;
    grafismColor?: string;
    bgColor?: string;
    className?: string;
    containerHeight?: string;
    containerClassName?: string;
}
declare const ProfileSection: ({ title, name, description, items, imageUrl, textColor, iconColor, lineColor, grafismColor, bgColor, className, containerHeight, containerClassName, }: Props) => import("react/jsx-runtime").JSX.Element;
export default ProfileSection;
