import React from 'react';
import { FlexProps } from '@mantine/core';
import { TextProps } from "../text";
export type ErrorLabelProps = {
    label: string;
    withIcon?: boolean;
    textProps?: Partial<TextProps>;
} & FlexProps;
export declare const ErrorLabel: ({ label, withIcon, textProps, ...rest }: ErrorLabelProps) => React.JSX.Element;
