import React from 'react'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types'; import { type CellBaseProps } from '../cells/Cell'; import type { ListCellBaseProps } from '../cells/ListCell'; import { type PressableProps } from '../system/Pressable'; export declare const selectOptionStaticClassName = 'cds-select-option'; export type SelectOptionBaseProps = Omit & Pick, 'href'> & Pick & Pick & { onClick?: React.MouseEventHandler; /** Prevent menu from closing when an option is selected */ disableCloseOnOptionChange?: boolean; /** * Necessary to control roving tabindex for accessibility * https://www.w3.org/TR/wai-aria-practices/#kbd_roving_tabindex * */ tabIndex?: number; /** Unique identifier for each option */ value: string; }; export type SelectOptionProps = SelectOptionBaseProps; export declare const SelectOption: React.MemoExoticComponent< (_props: SelectOptionProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=SelectOption.d.ts.map