import { DataAttributes } from 'src/types'; import { FieldPropsPrimitive } from '../../Primitives/Field/Field'; import { SelectNoWrapperProps } from '../../Primitives/Select/SelectNoWrapper'; export type AffixSelectPropsType = Omit & Omit & { isSuffix: boolean; } & Partial; declare const AffixSelect: import("react").ForwardRefExoticComponent & Omit & { isSuffix: boolean; } & Partial & import("react").RefAttributes>; export default AffixSelect;