import { Ref } from 'vue'; import { VTextarea } from 'vuetify/components/VTextarea'; type ActionsOptions = { trim: Ref; autoWrap: Ref; replaceTabs: Ref; normalize: Ref; }; export default function useTextActions(textAreaRef: Ref | null>, options: ActionsOptions): { changeActions: import('vue').ComputedRef<((value: string) => string)[]>; blurActions: import('vue').ComputedRef<((value: string) => string)[]>; }; export {};