import { Observable, PluginSubscribe } from '../../interfaces'; import { DataSourceState } from '../../store/dataSource/data.store'; export declare type TrimmedEntity = Record; export declare type Trimmed = Record; /** * Hide items from main collection * But keep them in store */ export declare const trimmedPlugin: (store: Observable>) => PluginSubscribe>; export declare function gatherTrimmedItems(trimmedItems: Trimmed): TrimmedEntity;