import React from 'react'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types'; import type { SelectBaseProps } from './Select'; export type SelectStackProps = { children: React.ReactElement; helperTextErrorIconAccessibilityLabel?: string; } & Pick< SelectBaseProps, 'compact' | 'label' | 'disabled' | 'helperText' | 'variant' | 'focused' | 'labelVariant' > & Pick; export declare const SelectStack: React.MemoExoticComponent< React.ForwardRefExoticComponent< { children: React.ReactElement; helperTextErrorIconAccessibilityLabel?: string; } & Pick< SelectBaseProps, 'label' | 'disabled' | 'compact' | 'variant' | 'focused' | 'labelVariant' | 'helperText' > & Pick & React.RefAttributes > >; //# sourceMappingURL=SelectStack.d.ts.map