import { ComponentWithCustomElement } from 'bloko/common/helpers/types'; interface NotificationFooterProps { /** Кастомный компонент или ('div', 'span', 'fieldset', 'label')*/ Element?: 'div' | 'span' | 'fieldset' | 'label'; /** Указывает на строку с компонентом в исходном коде в режиме разработки. Генерируется babel-plugin-react-source */ source?: string; } declare const NotificationFooter: ComponentWithCustomElement; export default NotificationFooter;