import { ActiveState, EntityState, EntityStore, ID } from '..'; export declare type TestBook = { id: ID; title: string; price: number; }; export interface TestBooksState extends EntityState, ActiveState { filter: string; } export declare class BooksStore extends EntityStore { constructor(); }