import * as React from 'react';
type NotificationContentProps = {
    funcss?: string;
    children?: React.ReactNode;
};
export default function NotificationContent({ funcss, children }: NotificationContentProps): React.JSX.Element;
export {};
