import { SelectPropsBase as UnStyledSelectPropsBase, SelectProps as UnStyledSelectProps, SelectPropsA as UnStyledSelectPropsA, SelectPropsB as UnStyledSelectPropsB } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; export type SelectPropsComponent = Omit, 'jssStyle'>; export type SelectPropsComponentA = Omit, 'jssStyle'>; export type SelectPropsComponentB = Omit, 'jssStyle'>; export type SelectPropsBaseComp = Omit, 'jssStyle'>; export type SelectProps = GetWithFieldProps, SelectPropsComponent['value']>; export type SelectPropsA = GetWithFieldProps, SelectPropsComponentA['value']>; export type SelectPropsB = GetWithFieldProps, SelectPropsComponentB['value']>; /** * @title Select */ export type SelectPropsBase = GetWithFieldProps, SelectPropsBaseComp['value']>;