import { FC } from 'react'; import { InputSelectProps } from '../InputSelect'; export interface HookedMarketWithCurrencySelectorProps extends Pick { /** * Market input name where market ID is stored. * Must match the field name in your form state/schema. */ fieldNameMarket: string; /** * Currency input name where currency code is stored. * Must match the field name in your form state/schema */ fieldNameCurrencyCode: string; } /** * Render a select input to choose a market as relationship with an empty option to choose "All markets with currency". * If this option is selected, a currency select input will be shown. */ export declare const HookedMarketWithCurrencySelector: FC;