import { AsyncList, AsyncItem } from 'microedge-rxstate/dist'; import { SkyLinkRecordsMatchModel } from './matches/match.model'; import { SkyLinkRecordsFieldModel } from './fields/field.model'; import { SkyLinkRecordsResultModel } from './results/result.model'; export declare class SkyLinkRecordsStateModel { matches: AsyncList; fields: AsyncItem<{ [key: string]: Array; }>; results: AsyncList; selected: AsyncItem<{ [key: string]: { [keyField: string]: boolean; }; }>; }