import type { PropType } from 'vue'
export declare const overlayProps: {
  /**
   * 是否展示遮罩层
   */
  show: {
    type: BooleanConstructor
    default: boolean
  }
  /**
   * 动画时长，单位毫秒
   */
  duration: {
    type: PropType<Record<string, number> | number | boolean>
    default: number
  }
  /**
   * 是否锁定滚动
   */
  lockScroll: {
    type: BooleanConstructor
    default: boolean
  }
  /**
   * 层级
   */
  zIndex: {
    type: NumberConstructor
    default: number
  }
  customStyle: {
    type: PropType<string>
    default: string
  }
  customClass: {
    type: PropType<string>
    default: string
  }
}
