import { ListItem, USEBtns, USEShowSheet } from './types';
import { Ref } from 'vue';
/**
 * 显示
 */
export declare const useShowSheet: ({ visibleModel }: USEShowSheet.Option) => {
    isShowMask: Ref<boolean, boolean>;
    isShow: Ref<boolean, boolean>;
    hideMask: () => void;
    animationDuration: number;
};
/**
 * 按钮
 */
export declare const useBtns: ({ emit, visibleModel }: USEBtns.Option) => {
    onLi: (item: ListItem) => void;
    onCancel: (e: MouseEvent) => void;
};
