import { FixedSide } from '../../../../constants'; import { TxPriorityDto } from './TxPriority.dto'; export declare class BaseTxPrepareDto { creatorPK: string; session?: string; paymaster?: string; amount: string; slippageBps: number; collateralAmount?: string; fixedSide?: FixedSide; priority?: TxPriorityDto; }