/**
 * @type {BlurType}
 *
 * @description Type for the color type of the overlay.
 *
 * @see https://github.com/DanielAraldi/react-native-blur-view?tab=readme-ov-file#blur-types
 *
 * @since 0.1.0
 */
export type BlurType =
  | 'extra-light'
  | 'light'
  | 'dark'
  | 'extra-dark'
  | 'thin-material'
  | 'thin-material-light'
  | 'thin-material-dark'
  | 'material'
  | 'material-light'
  | 'material-dark'
  | 'chrome-material'
  | 'chrome-material-light'
  | 'chrome-material-dark'
  | 'thick-material'
  | 'thick-material-light'
  | 'thick-material-dark'
  | 'ultra-thin-material'
  | 'ultra-thin-material-light'
  | 'ultra-thin-material-dark'
  | 'regular'
  | 'prominent';
