import { RaidbossData } from '../../../../../types/data'; import { TriggerSet } from '../../../../../types/trigger'; export interface Data extends RaidbossData { boundless?: { [name: string]: string; }; phase?: string; betwixtWorldsTethers?: string[]; betwixtWorldsStack?: string[]; falseMidnightSpread?: string[]; insatiableLightStack?: string[]; color?: 'light' | 'dark'; } declare const triggerSet: TriggerSet; export default triggerSet;