import type { RenderNotificationTile } from './types'; export type NotificationPopupsPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; export interface NotificationPopupsProps { className?: string; liveDurationMs?: number; maxVisible?: number; position?: NotificationPopupsPosition; hideWhenDrawerOpen?: boolean; renderTile?: RenderNotificationTile; } export declare function NotificationPopups({ className, liveDurationMs, maxVisible, position, hideWhenDrawerOpen, renderTile: renderTileProp, }: NotificationPopupsProps): import("react").JSX.Element | null; //# sourceMappingURL=notification-popups.d.ts.map