import React from 'react'; import type { SelectBaseProps } from '../controls/Select'; import type { DropdownProps } from '../dropdown'; import type { ChipProps } from './ChipProps'; export declare const SELECT_CHIP_DEFAULT_TEST_ID = 'select-chip'; /** * @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-web/alpha/select-chip/SelectChip} */ export type SelectChipProps = { /** Indicates that the control is being used to manipulate data elsewhere */ active?: boolean; /** * @deprecated This will be removed in a future major release. * @deprecationExpectedRemoval v7 */ children?: React.ReactNode; } & Omit & Pick & Omit; /** * @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-web/alpha/select-chip/SelectChip} */ export declare const SelectChip: React.MemoExoticComponent< React.ForwardRefExoticComponent & React.RefAttributes> >; //# sourceMappingURL=SelectChip.d.ts.map