import { EntityState, EntityStore, QueryEntity } from '@datorama/akita'; import { Observable } from 'rxjs'; import { Friend } from '../models/friend'; import { FriendService } from '../services/friend/friend.service'; import { UserQuery } from './user'; import * as i0 from "@angular/core"; export interface FriendState extends EntityState { } export declare class FriendStore extends EntityStore { private friendService; constructor(friendService: FriendService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export declare class FriendQuery extends QueryEntity { protected store: FriendStore; private userQuery; constructor(store: FriendStore, userQuery: UserQuery); populateUsers($input: Observable): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }