export declare class CustomLabels { private static labels; /** * Returns the overridden label, or the label if no override is registered */ static get(label: string): string; /** * Adds a label to the registry. */ static register(label: string, translation: string): void; }