import { ToastProviderProps } from './types/ToastProvider.props.ts'; /** * Mounts two Sonner `Toaster` instances: one at `top-right` for transient * toasts and one at `bottom-right` for persistent notifications. Sonner * positions the mounted viewports independently of the application layout. */ declare const ToastProvider: { ({ children }: ToastProviderProps): import("react").JSX.Element; displayName: string; }; export default ToastProvider;