utils.d.ts 277 B

12345678
  1. import type { ReactNode } from 'react';
  2. import type { InputProps } from './Input';
  3. export declare function hasPrefixSuffix(props: {
  4. prefix?: ReactNode;
  5. suffix?: ReactNode;
  6. allowClear?: InputProps['allowClear'];
  7. showCount?: InputProps['showCount'];
  8. }): boolean;