import { InternationalString } from '@iiif/presentation-3';
import { CozyMetadata } from '../types';
export declare const getPropertyValue: <T extends unknown = any>(data: any, name: string) => T;
export declare const getStringValue: (propertyValue: string | InternationalString, locale?: string) => string | undefined;
export declare const getLabel: (data: any) => (locale?: string) => string | undefined;
export declare const getMetadata: (data: any) => (locale?: string) => CozyMetadata[];
