export declare const WITHDRAWAL_RISK_QUERY_KEY = "withdrawalRisk"; export interface WithdrawalRiskResult { /** `true` blocks. `undefined` while unknown — which also blocks. */ isRisky: boolean | undefined; isChecking: boolean; isError: boolean; } /** * Chainalysis screening for the recipient. * * **Fails closed**: callers must require `isRisky === false`, so in-flight and * errored both block. The chain id scopes the screen to the destination chain, * so it is part of the key (web does the same). */ export declare function useWithdrawalRisk(address: string, chainId: number | undefined): WithdrawalRiskResult; //# sourceMappingURL=useWithdrawalRisk.d.ts.map