import { SuggestProps } from '@blueprintjs/select'; import * as React from 'react'; import { IconName } from './Icon'; export declare const GlobalSuggestStyle: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>; export declare const MENU_ITEM_HEIGHT = 32; interface Props extends React.PropsWithChildren> { itemHeight?: number; menuWidth?: number; icon?: IconName; } export declare const Suggest: (props: Props) => import("react/jsx-runtime").JSX.Element; export {};