import React from 'react';
export type ErrorLabelProps = {
    label: string;
    withIcon?: boolean;
};
export declare const ErrorLabel: ({ label, withIcon }: ErrorLabelProps) => React.JSX.Element;
