export { useState, useRef } from 'react'; import { ModalProps, FormInstance } from 'antd'; declare type SettingModalProps = ModalProps & { columns: any[]; columnState: any; setColumnState: any; searchSetting: boolean | { key?: string; resCode?: string; afterLoad?: () => void; }; orgState: any; tableUtils: any; modalItems: () => any[]; form: FormInstance; }; declare const _default: (props: SettingModalProps) => JSX.Element; export default _default;