import { Props } from './types';
import { Ref } from 'vue';
/**
 * 操作
 */
export declare const useHandler: (props: Readonly<Required<Props>>) => {
    isShow: Ref<boolean, boolean>;
};
