import { Props, Emits } from './types'; import { Ref } from 'vue'; /** * 显示 */ export declare const useShow: (props: Readonly>, emit: Emits) => { isShow: Ref; isDestroy: Ref; inputValue: Ref; onCancel: () => void; onConfirm: () => void; animationDuration: number; };