import * as React from 'react'; import './FooterIndicator.scss'; type Props = { indicatorText: string; }; declare const FooterIndicator: ({ indicatorText }: Props) => React.JSX.Element; export default FooterIndicator;