react-quick-notify
Version:
react-quick-notify: A beautiful, customizable toast notification system for React applications with zero CSS dependencies
10 lines • 372 B
TypeScript
import React, { ReactNode } from 'react';
import { ToastContextType, ToastConfig } from '../types/toast';
export declare const useToastContext: () => ToastContextType;
interface ToastProviderProps {
children: ReactNode;
config?: ToastConfig;
}
export declare const ToastProvider: React.FC<ToastProviderProps>;
export {};
//# sourceMappingURL=ToastProvider.d.ts.map