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