import * as React from 'react'; import '../styles.scss'; import { Theme } from '../Models/Theme/Theme'; import { TextContent } from '../Text/TextContent'; export type IntroBannerProps = { theme?: Theme; textContent: TextContent; authWindowActive: boolean; abort?: () => void; }; declare const IntroBanner: React.FC; export default IntroBanner;