export interface ISOLanguage {
    code: string;
    name: string;
    nativeName: string;
}
export declare class ISOLanguages {
    private static langs;
    static get getAll(): ISOLanguage[];
    static get(code: string): ISOLanguage | null;
}
