import { RootState } from "../../interfaces/RootState"; import { Operation } from "../../interfaces/Operation"; import { RequestMethod } from "../../selectors/enums/RequestMethod"; export declare class StateHelper { static getIdentifiers(state: RootState, operation: Operation, requestMethod: RequestMethod, id?: string): string[]; static getMeta(state: RootState, operation: Operation, requestMethod: RequestMethod, id?: string): { entityIds: string[]; loading: boolean; status: import("../ApiActionCreator/enums/ActionStatus").ActionStatus; endpoint: string; entities?: import("../../interfaces/ApiDataState").Entity[] | undefined; error?: import("axios").AxiosError | undefined; dataMeta?: { [key: string]: import("../../interfaces/ApiDataState").DataMetaPotentialValues; } | undefined; count?: number | undefined; } | undefined; static getLinks(state: RootState, operation: Operation, requestMethod: RequestMethod): { methods: Partial; data: import("../../interfaces/ApiDataState").OperationMeta; } | undefined; static getError(state: RootState, operation: Operation, requestMethod: RequestMethod): import("../..").JsonApiError | undefined; static getLoading(state: RootState, operation: Operation, requestMethod: RequestMethod, id?: string): boolean; }