import type { BaseFormFieldProps } from '../../core/hooks/useForm/types';
export interface StockISINFieldSchema {
    stockISIN?: string;
}
export type StockISINFieldProps = BaseFormFieldProps<StockISINFieldSchema>;
