import type { Chain, Network } from "@wormhole-foundation/sdk-base"; import { amount } from "@wormhole-foundation/sdk-base"; import { type ChainAddress, type ChainContext, type Signer, type TokenId } from "@wormhole-foundation/sdk-definitions"; import { CircleTransfer } from "../../protocols/cctp/cctpTransfer.js"; import type { StaticRouteMethods } from "../route.js"; import { AutomaticRoute } from "../route.js"; import type { Quote, QuoteResult, Receipt, TransferParams, ValidatedTransferParams, ValidationResult } from "../types.js"; import type { RouteTransferRequest } from "../request.js"; export declare namespace AutomaticCCTPRoute { type Options = { nativeGas?: number; }; type NormalizedParams = { amount: amount.Amount; fee: amount.Amount; nativeGasAmount: amount.Amount; }; interface ValidatedParams extends ValidatedTransferParams { normalizedParams: NormalizedParams; } } type Op = AutomaticCCTPRoute.Options; type Vp = AutomaticCCTPRoute.ValidatedParams; type Tp = TransferParams; type Vr = ValidationResult; type Q = Quote; type QR = QuoteResult; type R = Receipt; export declare class AutomaticCCTPRoute extends AutomaticRoute implements StaticRouteMethods { static NATIVE_GAS_DROPOFF_SUPPORTED: boolean; static meta: { name: string; provider: string; }; static supportedNetworks(): Network[]; static supportedChains(network: Network): Chain[]; static supportedDestinationTokens(sourceToken: TokenId, fromChain: ChainContext, toChain: ChainContext): Promise; getDefaultOptions(): Op; validate(request: RouteTransferRequest, params: Tp): Promise; quote(request: RouteTransferRequest, params: Vp): Promise; private normalizeTransferParams; private toTransferDetails; initiate(request: RouteTransferRequest, signer: Signer, quote: Q, to: ChainAddress): Promise; track(receipt: R, timeout?: number): AsyncGenerator, void, unknown>; } export {}; //# sourceMappingURL=automatic.d.ts.map