interface EditorProps { onChange: any; dataSource: any[]; init: any; getError: any; } interface FooterProps { submitting: boolean; saving: boolean; onSave: any; onSubmit: any; } interface OkProps { loading?: boolean; } interface EditEditorProps extends EditorProps { newData: object[]; editData: object[]; } interface ConfirmProps { title?: string; message?: string; visible?: boolean; onOk?: any; setVisible?: any; okProps: OkProps; } export { EditorProps, FooterProps, EditEditorProps, ConfirmProps, OkProps };