import { Props, USEMask } from './types';
import { Ref, ComputedRef } from 'vue';
/**
 * mask
 */
export declare const useMask: ({ emit, visibleModel }: USEMask.Option) => {
    isShowMask: Ref<boolean, boolean>;
    isShow: Ref<boolean, boolean>;
    showMask: () => void;
    hideMask: () => void;
    animationDuration: number;
};
/**
 * radius
 */
export declare const useRadius: ({ position, radius }: Props) => {
    setRadius: ComputedRef<string>;
};
