PromoCursed/node_modules/antd/lib/input/utils.d.ts
2024-08-20 23:25:37 +04: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;