import { TemplateRef } from '@angular/core'; import * as THREE from 'three'; import { NgtInstance, NgtInstanceState } from './abstracts/instance'; import { Ref } from './ref'; import { NgtStore } from './stores/store'; import type { NgtEventManager, NgtSize } from './types'; import * as i0 from "@angular/core"; export declare const privateKeys: readonly ["events", "invalidate", "advance", "size", "viewport"]; export declare class NgtPortalContent { templateRef: TemplateRef<{ portal: Ref; }>; constructor(templateRef: TemplateRef<{ portal: Ref; }>); static ngTemplateContextGuard(dir: NgtPortalContent, ctx: any): ctx is { portal: Ref; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export interface NgtPortalState extends NgtInstanceState { size: NgtSize; events: Pick; raycaster: THREE.Raycaster; pointer: THREE.Vector2; portalStore: NgtStore; } export declare class NgtPortal extends NgtInstance { set size(size: NgtSize); set events(events: Pick); content?: NgtPortalContent; private resizeResult$; constructor(); ngOnInit(): void; private readonly init; private readonly initPortalStore; private readonly subscribeToRoot; private readonly setInitialPortalState; private inject; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class NgtPortalModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; }