import type { Ref } from 'vue';
import type { InputProps } from '../input';
export declare const useInputClearable: (props: InputProps, { hovering, focused, }: {
    hovering: Ref<boolean>;
    focused: Ref<boolean>;
}) => {
    clear: () => void;
    showClear: import("vue").ComputedRef<boolean | "">;
};
