import { ComponentProps, ReactNode } from 'react';
interface ErrorProps extends ComponentProps<"p"> {
    checkEmpty?: boolean;
    children?: ReactNode;
    className?: string;
    id?: string;
}
export declare const Error: ({ children, className, checkEmpty, ...props }: ErrorProps) => import("react").JSX.Element | null;
export {};
