import React from 'react'; import type { DSComboboxT } from '../react-desc-prop-types.js'; interface SectionProps { label: string; wrapperStyles: React.CSSProperties; innerRef: (instance: HTMLDivElement | null) => void; options: DSComboboxT.ItemOption[] | DSComboboxT.ItemSeparatorOptions[]; handleClick: (option: DSComboboxT.ItemOption, e: React.MouseEvent) => void; handleOnMouseDown: (e: React.MouseEvent) => void; focusOptionIdx: string; selectedValues: DSComboboxT.SelectedOptionsT; getOwnerProps: () => object; getOwnerPropsArguments?: () => { index: number; }; } export declare const Section: React.MemoExoticComponent<(props: SectionProps) => import("react/jsx-runtime.js").JSX.Element>; export {};