import { IModalProps } from '@/common/types'; interface Props { modal?: IModalProps; statusId?: string; name?: string; onOk: () => void; disabledEditName?: boolean; } declare const openStateModal: (props: Props) => void; export default openStateModal;