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