import { Direction } from '@angular/cdk/bidi'; export interface WtKeyAction { key: string; action: 'exit' | 'prev' | 'next' | 'zoomIn' | 'zoomOut' | 'RotateRight' | 'RotateLeft' | 'help' | 'info' | 'custom'; } export interface WtOtherKey { key: string; trueLabel: string; falseLabel: string; value?: any; [key: string]: any; } export declare class WtImagePreviewOptions { wtKeyboard?: boolean; wtNoAnimation?: boolean; wtMaskClosable?: boolean; wtCloseOnNavigation?: boolean; wtZIndex?: number; wtZoom?: number; wtRotate?: number; wtDirection?: Direction; wtShowPage?: boolean; wtShowHelp?: boolean; wtShowInfo?: boolean; wtRegistryKeyboard?: WtKeyAction[]; wtOthers?: WtOtherKey[]; } export interface WtImage { src: string; srcset?: string; alt?: string; width?: string | number; height?: string | number; [key: string]: any; }