import React from 'react'; interface BsSystemOrderProps { value: { shopId?: string; orderNo: string; orders: any[]; selectIds: string[]; showOrderInfo: any[]; }; showHeader: { title: string; dataIndex: string; show?: boolean; }[]; type: string; disabled: boolean; onChange: (val: any) => void; onChangeOrder?: (val: any) => void; } export declare const rowKeyMap: Record; declare const _default: (props: BsSystemOrderProps) => React.JSX.Element; export default _default;