import { CoreModel } from '@sourceloop/core'; export declare class CustomFilter extends CoreModel { date?: { fromDate: Date; toDate: Date; }; deleted?: boolean; entityId?: string; actedOn?: string; /** Both actedOnList and actionGroupList parameters accepts a * list of values that you want to archive */ actedOnList?: string[]; actionGroupList?: string[]; } export type CustomFilterWithRelations = CustomFilter;