/** * Menu position in relation to the control. * Defaults to 'auto' - meaning, if not enough space below control, then place above. */ export declare const MenuPositionEnum: { readonly TOP: "top"; readonly AUTO: "auto"; readonly BOTTOM: "bottom"; }; export type MenuPositionEnum = typeof MenuPositionEnum[keyof typeof MenuPositionEnum]; /** * Property filterMatchFrom values. Defaults to 'any'. * Determines where to match search input in option during filter process. */ export declare const FilterMatchEnum: { readonly ANY: "any"; readonly START: "start"; }; export type FilterMatchEnum = typeof FilterMatchEnum[keyof typeof FilterMatchEnum]; /** * Arrow key direction OR position for cycling through menu options. */ export declare const OptionIndexEnum: { readonly UP: 0; readonly DOWN: 1; readonly LAST: 2; readonly FIRST: 3; readonly PAGEUP: 4; readonly PAGEDOWN: 5; }; export type OptionIndexEnum = typeof OptionIndexEnum[keyof typeof OptionIndexEnum];