export default SuperSelect; declare class SuperSelect extends React.PureComponent { constructor(props: any); isMultiple: boolean; state: { children: any[]; filterChildren: null; value: string | never[]; maxWidth: null; selectWidth: null; }; ITEM_HEIGHT: any; visibleDomHeight: number; reactDelta: number; isStopReact: boolean; prevScrollTop: number; prevTop: number; scrollTop: number; dropdownClassName: string; id: string; componentDidMount(): void; turnChildren: (children: any) => any[]; formulaWidth: () => void; getTextPixelWith: (text: any, fontStyle?: string) => number; componentDidUpdate(prevProps: any): void; componentWillUnmount(): void; getItemStyle: (i: any) => { position: string; top: number; width: string; height: any; }; preventEvent: (e: any) => void; addEvent: () => void; scrollEle: Element | null | undefined; inputEle: Element | null | undefined; onKeyDown: (e: any) => void; onScroll: () => void; onScrollReal: () => void; allList: any[] | undefined; throttleByHeight: () => void; getUseChildrenList: () => any[]; getStartAndEndIndex: () => { startIndex: number; endIndex: number; }; setSuperDrowDownMenu: (visible: any) => void; eventTimer: NodeJS.Timeout | undefined; onDropdownVisibleChange: (visible: any) => void; onDeselect: (value: any) => void; onChange: (value: any, opt: any) => void; onSearch: (v: any) => void; filterOption: (v: any, option: any) => boolean; setDefaultScrollTop: (data: any) => void; removeEvent: () => void; render(): JSX.Element; allHeight: number | undefined; select: import("antd/lib/select").default | null | undefined; wrap: DropDownWrap | null | undefined; } declare namespace SuperSelect { export { Option }; } import React from "react"; import DropDownWrap from "./DropDownWrap"; declare const Option: React.ClassicComponentClass; //# sourceMappingURL=index.d.ts.map