import { Reactive, Ref } from 'vue'; import { OnyxInputProps } from '../components/OnyxInput/types.js'; export type UseClearButtonOptions = { modelValue: Ref; props: Reactive>; }; /** * Composable for determining whether to show the clear button for a form element. */ export declare const useClearButton: (options: UseClearButtonOptions) => { showClearButton: import('vue').ComputedRef; };