import { StateStore } from '@emuanalytics/flow-rdf-core'; /** * Allows direct access to Flo.w reactive state in Angular templates. * * Use in a component's constructor context to inject reactive state into the component. * Change detection is automatically initialized by using this inject function. * * State properties can be bound in templates (e.g. `{{state.myProperty}}` ). * Two-way binding is also supported with ngModel (e.g. `[(ngModel)]="state.myProperty"`). * * @returns Flo.w reactive state for direct use in Angular binding */ export declare function flowReactiveState(): TState;