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