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