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