import * as React from 'react'; import { Props, State } from './types'; import './styles.scss'; import { ISelect } from '../SelectV2/types'; export declare class HorizontalList extends React.Component { refElement: any; constructor(props: Props); componentDidMount(): void; componentDidUpdate(nextProps: Props, nextState: State): void; selectElementList(el: ISelect, event: any): void; onHandleActive(el: ISelect, index: number, event: any): void; onHandleOpen(isCaret?: boolean): void; onClickDropdownElement(el: ISelect, index: number): void; renderCustom(): JSX.Element | null; render(): JSX.Element; }