import React from 'react'; import { ModalProps } from './modal'; interface Option { text: React.ReactNode; value: T; type?: 'primary' | 'danger'; disabled?: boolean; } declare type OptionsType = Array