/// import * as React from "react"; import * as styles from "./style/scope-select.css"; export declare type ScopeSelectStyle = Partial; export interface Scope { code: string; label: string; icon?: string; iconLibrary?: string; } export interface ScopeSelectProps { classNames?: ScopeSelectStyle; list: Scope[]; onScopeSelection?: (code: string) => void; value: string | number; } export declare class ScopeSelect extends React.Component { getScopeClickHandler(code: string): () => void; getActiveScope(): Scope | undefined; render(): JSX.Element; }