export type Dictionary = Record; export declare class Bundle { #private; constructor(dictionary?: Dictionary); get(key: string, fallback?: string): string; }