export default Store; declare class Store { constructor(resource: any, adapter: any, options?: {}); resource: any; adapter: any; namespace: any; storage: Collection; options: {}; extendActions(actions?: any[]): any; deposit(resourceInstance: any): any; serialize(json: any): import('./resolver').Resolver; afterFetch(json: any): any; create(attributes?: {}, options?: {}): Promise; update(id: any, attributes?: {}, options?: {}): Promise; findRecord(id: any, options?: {}): Promise; findAll(options?: {}): Promise; query(query?: {}, options?: {}): Promise; queryRecord(query?: {}, options?: {}): Promise; destroy(record: any, options?: {}): Promise; } export function afterFetch(store: any, json: any): any; export function extendStoreActions(store: any, actions?: any[]): any; import { Collection } from './utils';