minishouyin/node_modules/antd/es/input/utils.d.ts
2025-11-12 11:35:57 +08:00

9 lines
277 B
TypeScript

import type { ReactNode } from 'react';
import type { InputProps } from './Input';
export declare function hasPrefixSuffix(props: {
prefix?: ReactNode;
suffix?: ReactNode;
allowClear?: InputProps['allowClear'];
showCount?: InputProps['showCount'];
}): boolean;