@ucloud-pccl/react-components
Version:
UCloud pccl react components
9 lines (8 loc) • 481 B
TypeScript
import React from 'react';
import { InputRef } from './Input';
export interface SearchProps {
/** 搜索回调,回车/点击搜索按钮触发 */
onSearch?: (value: string) => void;
}
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<SearchProps & import("./Input").DefinedInputProps & Omit<React.InputHTMLAttributes<HTMLInputElement>, keyof import("./Input").DefinedInputProps> & React.RefAttributes<InputRef>>>;
export default _default;