import React from "react"; interface Props { error: string | null; onHide: () => void; title?: string; size?: "xs" | "sm" | "md" | "lg" | "xl" | false; } export declare const ErrorModal: ({ error, onHide, title, size, }: Props) => React.JSX.Element | null; export {};