import React from "react"; interface IProps { label: string; forId?: string; title?: string; children?: React.ReactNode; } declare const HelperBoxLabel: ({ label, forId, title, children }: IProps) => JSX.Element; export default HelperBoxLabel;