export interface NotificationProps { type?: 'info' | 'success' | 'error'; title?: string; description?: string; className?: string; duration?: number; } export declare const openNotification: ({ type, title, description, className, duration, }: NotificationProps) => void;