import { FC, ReactNode } from 'react'; import 'react-smartbanner/dist/main.css'; import './index.css'; export interface AppTeaserProps { title?: string; author?: string; button?: string; storeText?: ReactNode; appMeta?: ReactNode; price?: ReactNode; force?: string; url?: ReactNode; } declare const AppTeaser: FC; export default AppTeaser;