/** * @description 头部最新价格 * * @date 创建时间 2022-10-29 14:30 * @author 开发人员 */ import React from "react"; export interface LastPriceProps { lastPrice?: string; className?: string; } declare const LastPrice: React.FC; export default LastPrice;