import { Ref } from 'vue'; import { Props, Emits, USEInput } from './types'; /** * 短信验证码 */ export declare const useSms: (props: Readonly>, emit: Emits) => { sms: Ref; handleSMS: (e: MouseEvent) => void; }; /** * 图标 */ export declare const useIcon: (props: Readonly>, emit: Emits, inputType: Ref) => { handleIcon: (e: MouseEvent) => void; }; /** * 输入框 */ export declare const useInput: ({ props, emit, sms, inputVal }: USEInput.Option) => { inputLabel: Ref; inputType: Ref; paddingLeft: Ref; paddingRight: Ref; isFocus: Ref; onFocus: (e: FocusEvent) => void; onBlur: (e: FocusEvent) => void; onChange: (e: Event) => void; onInput: (e: Event) => void; };