import { CriteriaObj } from "./criteria-obj.model"; import { IntegrationObj } from "./integration-obj.model"; export declare class UcPagingObj { _url: string; enviromentUrl: string; apiQryPaging: string; deleteUrl: string; pagingJson: string; arrCritObj: any; addCritInput: Array; listEnvironments: Array; whereValue: Array; fromValue: Array; title: string; isSearched: boolean; isHideSearch: boolean; delay: number; navigationConst: any; switchValue: Array; integrationObj: IntegrationObj; isJoinExAPI: boolean; isGetAllData: boolean; ListPageSize: number[]; dataInput: any; dicts: Record; useSafeUrl: boolean; constructor(); } export declare class WhereValueObj { property: string; value: any; constructor(); } export declare class FromValueObj { property: string; value: any; constructor(); } export declare class SwitchValueObj { property: string; value: any; constructor(); } export declare class EnvisObj { environment: string; url: string; constructor(); }