UNPKG

@octopusdeploy/design-system-components

Version:
12 lines (11 loc) 429 B
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 {};