import * as React from 'react';
type NotificationFooterProps = {
    funcss?: string;
    children?: React.ReactNode;
};
export default function NotificationFooter({ funcss, children }: NotificationFooterProps): any;
export {};
