Repository URL to install this package:
|
Version:
4.0.76 ▾
|
import React from 'react';
import { defaultRenderActiveAfterText, defaultRenderActiveBeforeText, defaultRenderText } from './renderProps';
import { ActiveOptionProps } from './typings';
declare class ActiveOption extends React.Component<ActiveOptionProps> {
static defaultProps: {
state: Readonly<{}>;
renderText: typeof defaultRenderText;
renderActiveAfterText: typeof defaultRenderActiveAfterText;
renderActiveBeforeText: typeof defaultRenderActiveBeforeText;
};
handleKeyDownEvent: (event: Event | React.KeyboardEvent<any>) => void;
handleClickEvent: (event: Event | React.MouseEvent<any>) => void;
render(): JSX.Element;
}
export { ActiveOption };
export default ActiveOption;