import { AuthService } from './auth.service'; import { AuthServiceMock } from './auth.service.mock'; import { WithoutMetaButAllowId, DxUser } from '@digitaix/types'; export declare function getStoreStateWithUser>(user: User): { dx: { auth: { user: User; }; }; }; export declare function provideMockStoreWithUser>(user: User): import("@angular/core").Provider[]; export declare function createAuthServiceMockFactory(user: User): () => AuthServiceMock; export declare function provideMockAuthService(): { provide: typeof AuthService; useFactory: typeof createAuthServiceMockFactory; deps: any[]; };