import React from 'react';
interface InfoHelperProps {
    description: string;
    containerClass?: string;
    width?: number;
    property?: string;
    id?: string;
}
declare function InfoHelperFactory(): ({ description, property, containerClass, width, id }: InfoHelperProps) => React.JSX.Element;
export default InfoHelperFactory;
