warningPropsUtil.d.ts 182 B

12345
  1. import type { TreeSelectProps } from '../TreeSelect';
  2. declare function warningProps(props: TreeSelectProps & {
  3. searchPlaceholder?: string;
  4. }): void;
  5. export default warningProps;