You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
422 B
10 lines
422 B
import * as React from 'react';
|
|
export declare type OptionListProps = Record<string, never>;
|
|
export interface RefOptionListProps {
|
|
onKeyDown: React.KeyboardEventHandler;
|
|
onKeyUp: React.KeyboardEventHandler;
|
|
scrollTo?: (index: number) => void;
|
|
}
|
|
declare const RefOptionList: React.ForwardRefExoticComponent<Pick<OptionListProps, string> & React.RefAttributes<RefOptionListProps>>;
|
|
export default RefOptionList;
|