import React, { FocusEventHandler } from 'react'; interface CommonSystemOrderProps { value: any[]; type: number; options: any[]; disabled: boolean; onChange: (val: any[]) => void; onBlur: FocusEventHandler; } declare const CommonSystemOrder: (props: Partial) => React.JSX.Element; export default CommonSystemOrder;