import type { CheckoutQuoteResponse } from '@funkit/utils';
import type { FunkitCheckoutConfig } from '../providers/FunkitCheckoutContext';
export declare const DEFAULT_TX_DELAYED_CUTOFF = 60;
/**
 * Returns the delayed auto trigger cutoff (in seconds) for slow deposits.
 * Handles Lighter L1, LayerZero OFT, and Across (CCTP) routes.
 * Falls back to {@link DEFAULT_TX_DELAYED_CUTOFF} for standard deposits.
 */
export declare function getSlowDepositDelayedCutoff(apiKey: string, checkoutConfig: Pick<FunkitCheckoutConfig, 'targetChain'> | undefined, metadata?: CheckoutQuoteResponse['metadata']): number;
