import type { ReactNode } from "react"; interface ErrorProps { children?: ReactNode; title?: string; description?: string; } export declare const Error: ({ children, description, title, }: ErrorProps) => import("react/jsx-runtime").JSX.Element; export {};