import { type FC } from '@lynx-js/react';
import type { ViewProps } from '@lynx-js/types';
type ErrorProps = {
    name: string;
} & Partial<ViewProps>;
export declare const Error: FC<ErrorProps>;
export {};
