import type {ColorVariant, TextColorVariant} from '@/types'
// Props
export interface Props {
  bodyBgVariant?: ColorVariant
  bodyClass?: Array<unknown> | Record<string, unknown> | string
  bodyTag?: string
  bodyTextVariant?: TextColorVariant
  overlay?: boolean
  subTitle?: string
  subTitleTag?: string
  subTitleTextVariant?: TextColorVariant
  title?: string
  titleTag?: string
}
// Emits

// Other
