interface ErrorModalContentsProps {
    error: Error | null;
    message?: string;
}
interface ErrorModalProps extends ErrorModalContentsProps {
    show: boolean;
    onHide: () => void;
    title: string;
}
declare function ErrorModalContents(props: ErrorModalContentsProps): import("react/jsx-runtime").JSX.Element;
declare function ErrorModal(props: ErrorModalProps): import("react/jsx-runtime").JSX.Element;
export default ErrorModal;
export { ErrorModalContents };
