import { FC } from 'react'; import './index.less'; import { EnvType } from './utils/serviceEnv'; export interface ChangePrice { env?: EnvType; token?: string; loginErrFn?: any; siteId?: string | number; app: number; onExit?: any; onSuccess?: any; changePriceGoodsIds?: any; resetPriceInfo?: any; isAllSelf?: boolean; } declare const ChangePrice: FC; export default ChangePrice;