@commercelayer/react-components
Version:
The Official Commerce Layer React Components
8 lines (7 loc) • 386 B
TypeScript
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;