import { TableColumn } from '../../../table/table.column'; export interface SelectCondition { title: string; query: string; method: string; selectButtonLabel: string; closeButtonLabel: string; search: any[]; params: URLSearchParams; list: any[]; filterKey: string; excludeFilter: string[]; includeFilter: string[]; columns: TableColumn[]; sortBy: string; sortDir: string; pageNumber: number; pageSize: number; pageSizeOptions: number[]; selectedItems: string[]; extended: any; }