import { ChildItemType } from '../../constants/orderSubForm'; import React from 'react'; type Parmas = { orderNo: string; shopId: string; }; declare const _default: { getOrderListSingleton: (parmas: Parmas) => Promise; renderEditItem: ({ item, val, disabled, index, type, updateHandle, }: { item: ChildItemType; val: any; disabled: boolean; index: number; type: string; updateHandle: (val: any, index: number, type: string) => void; }) => React.ReactNode; renderDetailItem: ({ item, val }: { item: ChildItemType; val: any; }) => React.ReactNode; }; export default _default;