import type { PropsWithChildren } from 'react';
import React from 'react';
import type { NotificationSeverity } from 'stream-chat';
export type CustomNotificationProps = {
    type?: NotificationSeverity | string;
    active?: boolean;
    className?: string;
};
export declare const CustomNotification: (props: PropsWithChildren<CustomNotificationProps>) => React.JSX.Element | null;
