import type { LanguageProfile, LanguageProfileId } from './types.js'; export declare class LanguageProfileRegistry { #private; constructor(profiles?: readonly LanguageProfile[]); register(profile: LanguageProfile): void; get(id: LanguageProfileId): LanguageProfile | undefined; list(): readonly LanguageProfile[]; } export declare function validateLanguageProfile(profile: LanguageProfile): string[]; export declare const languageProfileRegistry: LanguageProfileRegistry; //# sourceMappingURL=registry.d.ts.map