import { PropsWithChildren, ReactElement } from "react";
import { Props as IconProps } from "@brizy/ui/lib/Icon";
export interface Props {
    title: string;
    isBlue?: boolean;
    icon?: IconProps["source"];
    helper?: string;
    onIconClick?: (el: HTMLElement) => void;
}
export declare const DetailItem: ({ title, isBlue, icon, children, onIconClick, helper, }: PropsWithChildren<Props>) => ReactElement;
