import type { Ref } from "vue"; import type { SelectComposeInputConfig } from "./select-compose-input"; /** 多行输入框 */ export default function useMore(showValue: Ref, opt: SelectComposeInputConfig, callback: (val: string) => void): { visible: Ref; text: Ref; disabled: import("vue").ComputedRef; handleReset: () => void; handleSubmit: () => void; };