import type { FaceMaskFormat } from './enums/FaceMaskFormat';

export interface FaceMaskOptions {
  enabled?: boolean;
  type?: FaceMaskFormat;
  backgroundColor?: string;
  frameColor?: string;
  frameEnabledColor?: string;
  frameErrorColor?: string;
}
