import type { SearchBarProps as AMSearchBarProps } from 'antd-mobile'; import type { CSSProperties } from 'react'; export interface SearchBarProps extends AMSearchBarProps { /** 样式 */ style?: CSSProperties; /** 值变动防抖时间 */ debounceTime?: number; /** 点击取消按钮的回调 */ onCancel?: any; }