import type { CSSInterpolation, CSSObject } from '@ant-design/cssinjs'; import { type AliasToken } from '../../theme/internal'; import type { TokenWithCommonCls } from '../../theme/util/genComponentStyleHook'; import type { SelectToken } from './token'; type SelectItemToken = Pick; export declare const genSelectionStyle: (token: TokenWithCommonCls & SelectItemToken, suffix?: string) => CSSObject; declare const genMultipleStyle: (token: SelectToken) => CSSInterpolation; export default genMultipleStyle;