import React from 'react'; import './index.less'; export interface OrderListProps { biz: string; className?: string; style?: React.CSSProperties; __id?: string; } declare const OrderList: (props: OrderListProps) => React.JSX.Element; export default OrderList;