import * as React from 'react'; import { IOption } from '../types/'; interface TProps { name: string; index: number; isOptionsPanelOpen: boolean; nextPotentialSelectionIndex: number; optionsContainerRef: React.RefObject; optHeaderLabel: string; multiSelectSelectedIndexes: number[]; option: IOption; } export declare class MultiSelectOption extends React.Component { private optionRef; private scrollOffset; constructor(props: TProps); getScrollOffset(): number; componentDidUpdate(): void; isDisabled(option: IOption): boolean; render(): React.ReactNode; } export {};