export declare class Page { filter: Filter; size: number; totalElements: number; totalPages: number; pageNumber: number; sortColumn: string; sortDir: string; } export declare class Filter { filter: string; showAll: boolean; filters: MultiFilters[]; issueState: string; machineId: string; machineVersionId: string; deviceId: string; filterDateFrom: string; filterDateTo: string; startDate: string; endDate: string; machine: string; reference: string; workerCode: string; phaseId: string; startHour: string; endHour: string; subtype: string; showPending: boolean; showPlanned: boolean; showProduction: boolean; showProduced: boolean; showFinished: boolean; hideChildrens: boolean; filterOF: string; filterReference: string; productionType: string; status: string; showOnlyWithComments: boolean; showOnlyActive: boolean; showOnlyNotActive: boolean; issueType: string; priority: string; informerId: string; responsableId: string; } export declare class MultiFilters { key: string; value: string; }