import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { TitleSubtitleInterface } from "../../interfaces/interfaces/TitleSubtitleInterface"; export interface FeatureIntroInterfaceProps extends PropsInterface, TitleSubtitleInterface { } export declare class FeatureIntro extends PureComponent { constructor(props: any); render(): JSX.Element; }