import { type SelectOption } from '@gravity-ui/uikit'; export type CodeLangSelectProps = { lang: string; selectItems: SelectOption[]; mapping: Record; focus: () => void; onChange: (value: string) => void; }; export declare const CodeLangSelect: React.FC;