import { IViewComponentFilteredState } from "./IViewComponentFilteredState";
export interface IFilteredState {
    filterApplied: boolean;
    state: IViewComponentFilteredState;
    key?: string;
}
