import { IModalProps } from '@/common/types'; interface Props { modal?: IModalProps; projectId?: string; searchVO: any; onOk: () => void; } declare const openSaveFilterModal: (props: Props) => void; export default openSaveFilterModal;