import React from "react";
interface LabelWithIconAndTooltip {
    icon: React.ReactNode;
    title?: string;
    small?: boolean;
    className?: string;
    required?: boolean;
    propertyKey: string;
}
/**
 * Render the label of with an icon and the title of a property
 * @group Form custom fields
 */
export declare function LabelWithIconAndTooltip({ propertyKey, className, ...props }: LabelWithIconAndTooltip): import("react/jsx-runtime").JSX.Element;
export {};
