import type { Signal } from '@angular/core'; import { InjectionToken } from '@angular/core'; import type { CuiSegmentedWindow, CuiSegmentedWindowPatch } from './segmented-window.options'; export interface CuiSegmentedWindowContext { readonly window: Signal; readonly patchData: (patch: CuiSegmentedWindowPatch) => void; readonly close: () => void; } export declare const CUI_SEGMENTED_WINDOW_CONTEXT: InjectionToken>;