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