import { type JsonApiAttributeOutWithLinks, type JsonApiDatasetOut, type JsonApiLabelOut } from "@gooddata/api-client-tiger"; import { type Attribute, type DisplayForm } from "../../base/types.js"; export type LabelMap = { [id: string]: JsonApiLabelOut; }; export type DatasetMap = { [id: string]: JsonApiDatasetOut; }; export declare function createLabelMap(included: any[] | undefined): LabelMap; export declare function createDatasetMap(included: any[] | undefined): DatasetMap; export declare function getReferencedDataset(relationships: object | undefined, datasetsMap: DatasetMap): JsonApiDatasetOut | undefined; export declare function convertLabels(attribute: JsonApiAttributeOutWithLinks, labelsMap: LabelMap): DisplayForm[]; export declare function convertAttribute(attribute: JsonApiAttributeOutWithLinks, labels: LabelMap): Attribute | undefined; //# sourceMappingURL=tigerCommon.d.ts.map