import * as React from "react"; import { CommonStyleProps } from "../systemHelpers"; export declare type ErrorLabelProps = CommonStyleProps & { hasError?: boolean; }; export declare const ErrorLabel: { ({ hasError, children, ...props }: ErrorLabelProps & React.HTMLAttributes): JSX.Element; displayName: string; };