import type { FunCheckoutStep } from '../CheckoutModal/FunCheckoutStep';
import type { CheckoutModalCommonState, ModalStepInfo } from '../CheckoutModal/stepTransition';
/**
 * Per-step state for the perps transfer screen. Balances are not carried in on
 * navigation — the step reads them from the shared balance cache (see
 * {@link usePolymarketAccountBalances}), the same cache the deposit picker
 * populates, so there's no reload flash on entry.
 */
export type PerpsTransferState = CheckoutModalCommonState;
export type PerpsTransferNext = null;
export declare const PerpsTransferStepInfo: ModalStepInfo<FunCheckoutStep.PERPS_TRANSFER>;
