import { NormalizerInterface } from "./interfaces/NormalizerInterface"; import { Entities } from "../interfaces/ApiDataState"; import { ResourceType } from "../interfaces/ResourceType"; import { RootState } from "../interfaces/RootState"; export declare class JSONANormalizer implements NormalizerInterface { private normalizer; constructor(); normalizeFromState(state: Entities, resource: ResourceType, identifier: string[]): T[] | null; normalizeFromState(state: Entities, resource: ResourceType, identifier: string): T | null; } export declare const Normalizer: JSONANormalizer; export declare function getIdentifier(_state: RootState, identifier: string): string; export declare function getIdentifiers(_state: RootState, identifiers: string[]): string[];