interface ModalProps { visible?: boolean; data?: Record; onCancel?: () => void; onCheck?: () => void; onConfirm?: () => void; close?: () => void; } export declare const usePairModal: () => { visible: boolean; open: (props: ModalProps) => void; close: () => void; modalProps: ModalProps; }; /** * @title 解除配对 */ export declare const useUnPairRequest: () => { run: (params: any) => any; }; /** * @title 检查配对状态 */ export declare const useCheckPairRequest: () => { run: (params: any) => any; }; export {};