type Props = {
onClose?: () => void;
title: string;
description: string;
image: any;
buttonText: string;
onButtonPress?: () => void;
minHeight?: number;
};
declare const Notification: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default Notification;