UNPKG

@commercelayer/react-components

Version:
8 lines (7 loc) 386 B
import type { BaseSelectComponentProps } from '../../typings/index'; import type { JSX } from "react"; type Props = Omit<BaseSelectComponentProps, 'options' | 'name'> & { required?: boolean; } & Pick<JSX.IntrinsicElements['select'], 'className' | 'id' | 'style'>; export declare function GiftCardCurrencySelector(props: Props): JSX.Element; export default GiftCardCurrencySelector;