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