import { Response } from "node-fetch";
import { BaseRequestOptions } from "./helper";
export interface LangCodeReqOptions extends BaseRequestOptions {
    /**
     * Name of the language
     */
    languageName: string;
}
/**
 * Fetches language code of a language
 */
export declare function getLangCode(options: LangCodeReqOptions): Promise<object | Response>;
