import React from 'react'; interface IntroContainerProps { children: React.ReactNode; } declare const IntroContainer: (props: IntroContainerProps) => JSX.Element; export default IntroContainer;