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