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