import React, { ComponentProps, ForwardRefExoticComponent, ReactNode } from 'react'; import { NotificationProps as NotificationPropsNewHope, NotificationPlacement } from '@salutejs/plasma-new-hope/styled-components'; export type { NotificationPlacement }; export declare const NotificationNewHope: React.FunctionComponent & (React.HTMLAttributes | import("@salutejs/plasma-new-hope/types/engines/types.js").HTMLAttributesWithoutOnChange | import("@salutejs/plasma-new-hope/types/engines/types.js").HTMLAttributesWithoutOnChangeAndDefaultValue | import("@salutejs/plasma-new-hope/types/engines/types.js").HTMLAttributesWithoutDraggable)>; type ConfigProps = 'size' | 'view' | 'layout' | 'closeIconType'; type NotificationProps = Pick, ConfigProps> & Omit; export declare const Notification: ForwardRefExoticComponent; export declare const NotificationsProvider: React.FC<{ children: ReactNode; frame?: string; placement?: NotificationPlacement; UNSAFE_SSR_ENABLED?: boolean; }>;