import { Ref } from 'vue';
/**
 * 操作
 */
export declare const useShow: () => {
    isShow: Ref<boolean, boolean>;
    isDestroy: Ref<boolean, boolean>;
    onClose: () => void;
    animationDuration: number;
};
