export declare const REVIEW_LANGUAGES: {
    readonly en: "english";
    readonly zh: "simplified chinese";
    readonly ja: "japanese";
    readonly ko: "korean";
};
export type ReviewLanguage = keyof typeof REVIEW_LANGUAGES;
export declare const SYSTEM_MESSAGES: {
    CODE_REVIEW: (language?: ReviewLanguage) => string;
};
