import * as React from 'react'; import { Icon, IHasCX, NotificationOperation, NotificationContext, IHasRawProps, IHasForwardedRef } from '@epam/uui-core'; export interface SnackbarProps extends IHasCX, IHasRawProps>, IHasForwardedRef { closeIcon?: Icon; notifications?: NotificationOperation[]; } export declare class Snackbar extends React.Component { static contextType: React.Context>; context: { uuiNotifications: NotificationContext; }; private itemsHeights; componentDidMount(): void; private updateHeight; renderItem(item: NotificationOperation, position: number): React.JSX.Element; private renderItemWithOffset; render(): React.JSX.Element; } //# sourceMappingURL=Snackbar.d.ts.map