export declare const gapProps: {
  /**
   * 背景颜色
   */
  bgColor: {
    type: import('vue').PropType<string>
    default: string
  }
  /**
   * 是否开启底部安全区
   */
  safeAreaBottom: {
    type: BooleanConstructor
    default: boolean
  }
  /**
   * 高度
   */
  height: {
    type: (NumberConstructor | StringConstructor)[]
    default: number
  }
  /**
   * 是否开启顶部安全区
   */
  safeAreaTop: {
    type: BooleanConstructor
    default: boolean
  }
  customStyle: {
    type: import('vue').PropType<string>
    default: string
  }
  customClass: {
    type: import('vue').PropType<string>
    default: string
  }
}
