import React, { FC } from 'react'; import { IglooButtonProps } from 'iglooform/es/button'; import './style'; interface IProps { /** * @description Icon of title */ titleIcon: React.ReactNode; /** * @description Title */ title: React.ReactNode; /** * @description content */ content?: React.ReactNode | React.ReactNode[]; /** * @description Text of button */ buttonText: React.ReactNode; /** * @description Button's Props */ buttonProps?: IglooButtonProps; /** * @description Content's Props */ contentProps?: { [prop: string]: any; }; } declare const NotificationSection: FC; export default NotificationSection;