import { ConnectionWithdrawResponse } from "../../../interfaces/models/Connection"; export interface RemoveConnectionProps { connectionId: string; } declare function useRemoveConnection(): (props: RemoveConnectionProps) => Promise; export default useRemoveConnection;