import React from 'react'; import type { AsProps } from '@sberdevices/plasma-core'; declare const statuses: { success: import("styled-components").FlattenSimpleInterpolation; warning: import("styled-components").FlattenSimpleInterpolation; error: import("styled-components").FlattenSimpleInterpolation; }; export interface NotificationProps extends AsProps, React.HTMLAttributes { /** * Заголовок. */ title?: string; /** * Контент. */ children?: React.ReactNode; /** * Статус - цветовая индикация сообщения. */ status?: keyof typeof statuses; } /** * Компонент для небольших уведомлений пользователя */ export declare const Notification: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Notification.d.ts.map