import { TooltipProps } from '../../components/Tooltip';
import { FieldProps } from '..';
interface FieldTooltipProps extends TooltipProps, Pick<FieldProps, "label"> {
    id: string;
}
/**
 * Info tooltip to be used within Field context.
 */
export declare const FieldTooltip: ({ label, id, ...props }: FieldTooltipProps) => import("react").JSX.Element;
export {};
