interface CodeEditorSelectProps<T extends string> {
    supportedLanguages: Array<T>;
    scriptingLanguage: T;
    onChange: (value: T) => void;
    onFocus: () => void;
    onClose?: () => void;
    onOpen?: () => void;
}
export declare function CodeEditorSelect<T extends string>(props: CodeEditorSelectProps<T>): import("react/jsx-runtime").JSX.Element;
export declare const codeEditorToolbarSelectStyles: string;
export {};
