export interface SearchProps { /** * 加载状态 * @type { boolean } * @default false */ loading?: boolean; /** * 是否禁用 * @type { boolean } * @default undefined */ disabled?: boolean; /** * 搜索回调 * @description 搜索回调,用于在搜索模式下搜索内容 * @returns { void } */ onSearch?: () => void; /** * 暂停加载回调 * @description 暂停加载回调,用于在搜索模式下暂停加载状态 * @returns { void } */ onPauseLoading?: () => void; }