import { TransferProps as UnStyledTransferProps } from '@sheinx/base'; import { KeygenResult } from '@sheinx/hooks'; import { GetWithFieldProps } from '../hooks/use-field-common'; export interface BaseTransferProps extends Omit, 'jssStyle'> { /** * @en The set of values displayed in the box data on the right * @cn 显示在右侧框数据的值集合 */ value?: Value; } /** * @title Transfer */ export type TransferProps = GetWithFieldProps, BaseTransferProps['value']>;