import type { BaseSelectComponentProps } from '../../typings/index'; import type { JSX } from "react"; type Props = Omit & { required?: boolean; } & Pick; export declare function GiftCardCurrencySelector(props: Props): JSX.Element; export default GiftCardCurrencySelector;