import { ThemeConfig } from 'antd'; import { SelectProps } from '../select/types'; export declare const CustomizedAntSelectTagConfig: ThemeConfig; export declare const generateSelectClassNames: ({ size, error, disabled, isTabFocused, }: { size: SelectProps['size']; error?: boolean | undefined; disabled: SelectProps['disabled']; isTabFocused: boolean; }) => string;