import { InjectionToken } from '@angular/core'; export declare const LIGHTBOX_CONFIG: InjectionToken; export interface LightboxConfig { backdropClass?: string | string[]; panelClass?: string | string[]; hasBackdrop?: boolean; keyboardShortcuts?: boolean; closeIcon?: string; role?: string; ariaLabelledBy?: string; ariaLabel?: string; ariaDescribedBy?: string; startAnimationTime?: number; exitAnimationTime?: number; }