UNPKG

@wix/design-system

Version:

@wix/design-system

23 lines 896 B
import React from 'react'; import { FloatingNotificationProps } from './FloatingNotification.types'; /** * @deprecated FloatingNotification is deprecated and will be removed in the next major version. Please use SectionHelper instead. */ declare class FloatingNotification extends React.PureComponent<FloatingNotificationProps> { static displayName: string; static defaultProps: { type: string; buttonProps: {}; textButtonProps: {}; showCloseButton: boolean; }; constructor(props: FloatingNotificationProps); render(): React.JSX.Element; _getIcon(): React.JSX.Element | null; _getContent(): React.JSX.Element; _getTextButton(): React.JSX.Element | null; _getButton(): React.JSX.Element | null; _getClose(): React.JSX.Element | null; } export default FloatingNotification; //# sourceMappingURL=FloatingNotification.d.ts.map