import React from 'react'; type Props = { text: string; }; declare const Container: { ({ text }: Props): React.JSX.Element; displayName: string; }; export default Container;