import React from "react"; import { HelperTextProps as MDCHelperTextProps } from "@material/react-text-field"; export interface HelperTextProps extends Omit { error?: string; children?: React.ReactNode; } declare function HelperText({ error, children, ...props }: HelperTextProps): React.JSX.Element; export default HelperText;