import * as React from 'react'; import { i18nDefaultInterface } from './iFeedInterface'; interface Props { handleAddFeed: (param: any) => void; i18nTranslation: i18nDefaultInterface; } interface States { isLoading: boolean; createTaskBoxKey?: number; } export default class FeedTab extends React.Component { shareBoxIns: null; shareBoxKey: number; isOpenNewTaskApp: boolean; createTaskBoxKey: number; defaultData: any; selectTab: number; static defaultProps: { i18nTranslation: { assignTaskText: string; shareText: string; }; }; constructor(props: Props); handleChange: (value: any) => void; handleChangeTaskText: (value: string) => void; handleChangeTaskDes: (value: string) => void; shareBoxRef: (node: any) => void; handleSubmit: (textValue: string, fileList: string[], scope: number) => void; handleSave: (data: any) => void; showSelectUserPop: (position: { top: number; left: number; }) => any; insertToTextBox: (userList: any[]) => void; filterArrayKey(arr: any, key: any): any; render(): JSX.Element; } export {};