import { FunctionComponent } from 'react'; import { IAppStyle } from '../../theme'; export interface ITeaserProps { imgSrc: string; className?: string; } export declare type ITeaser = FunctionComponent; export declare type ITeaserStyle = IAppStyle;