export interface CnSearchRef {
    /**
     * 点击清除按钮回调
     */
    clear: () => void;
    /**
     * focus 事件回调
     */
    focus: () => void;
    /**
     * blur 事件回调
     */
    blur: () => void;
    /**
     * 原生元素
     */
    nativeElement: HTMLInputElement | null;
}
