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