import React from "react"; interface NotificationProps { header?: string; leftContent?: React.ReactNode; rightContent?: React.ReactNode; text?: React.ReactNode; className?: string; renderContent?: (props: NotificationProps) => React.ReactNode | React.ReactNodeArray | null; success?: boolean; error?: boolean; } export declare const UINotification: (props: NotificationProps) => JSX.Element; export declare const createUINotification: (props: NotificationProps) => JSX.Element; export {};