import { type Address, type Hex } from "viem"; import { type Deallocation } from "../types"; /** * Encodes a single `forceDeallocate` call as ABI-encoded calldata. * * @param deallocation - A deallocation entry. * @param onBehalf - The address from which the penalty is taken (share owner). * @returns The ABI-encoded calldata for `VaultV2.forceDeallocate`. */ export declare function encodeForceDeallocateCall(deallocation: Deallocation, onBehalf: Address): Hex;