import React from 'react'; import type { View } from 'react-native'; import type { SelectBaseProps } from '../controls/Select'; import type { TrayBaseProps } from '../overlays/tray/Tray'; import type { ChipProps } from './ChipProps'; /** * @deprecated This component is deprecated. Please use the new SelectChip alpha component instead. This will be removed in a future major release. * @deprecationExpectedRemoval v9 * @see {@link @coinbase/cds-mobile/alpha/select-chip/SelectChip} */ export type SelectChipProps = Pick< SelectBaseProps, 'onChange' | 'valueLabel' | 'placeholder' | 'value' > & Omit & Omit & { children: React.ReactNode; /** Indicates that the control is being used to manipulate data elsewhere */ active?: boolean; }; /** * @deprecated This component is deprecated. Please use the new SelectChip alpha component instead. This will be removed in a future major release. * @deprecationExpectedRemoval v9 * @see {@link @coinbase/cds-mobile/alpha/select-chip/SelectChip} */ export declare const SelectChip: React.MemoExoticComponent< ({ ref, children, value: defaultValue, valueLabel, placeholder, disabled, accessibilityLabel, onPress, end, onChange, onBlur, testID, preventDismissGestures, hideHandleBar, disableCapturePanGestureToDismiss, verticalDrawerPercentageOfView, handleBarAccessibilityLabel, active, ...props }: SelectChipProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=SelectChip.d.ts.map