export declare namespace Label {
    type Data = {
        [language: string]: string;
    };
}
export type Label = string;
export declare function renderLabel(label: Label): string;
