import React from 'react'; import ActionSheetContentWithInputAndSubmit from '../../../../containers/ActionSheet/ActionSheetContentWithInputAndSubmit'; import I18n from '../../../../i18n'; const CloseLivechatSheet = ({ onSubmit = () => {}, onCancel = () => {} }: { onSubmit: (comment: string) => void; onCancel: () => void; }) => ( ); export default CloseLivechatSheet;