import type { BaseFormFieldProps } from '../../core/hooks/useForm/types';
export interface StockExchangeMICFieldSchema {
    stockExchangeMIC?: string | undefined;
}
export type StockExchangeMICFieldProps = BaseFormFieldProps<StockExchangeMICFieldSchema>;
