/**
 * @type {EffectStyle}
 *
 * @description Effect style for the vibrancy view.
 *
 * @see https://github.com/DanielAraldi/react-native-blur-view?tab=readme-ov-file#effect-styles
 *
 * @since 2.1.0
 */
export type EffectStyle =
  | 'label'
  | 'secondary-label'
  | 'tertiary-label'
  | 'quaternary-label'
  | 'fill'
  | 'secondary-fill'
  | 'tertiary-fill'
  | 'separator';
