export type StaticConfig = { commitStore: string; chainSelector: string; sourceChainSelector: string; onRamp: string; prevOffRamp: string; armProxy: string; }; export type OnchainStaticConfig = Omit & { chainSelector: bigint; sourceChainSelector: bigint; }; export type DynamicConfig = { permissionLessExecutionThresholdSeconds: number; priceRegistry: string; router: string; maxDataSize: number; maxTokensLength: number; }; export type ExecReportingPluginConfig = { SourceFinalityDepth: number; DestFinalityDepth: number; DestOptimisticConfirmations: number; BatchGasLimit: number; RelativeBoostPerWaitHour: string; MaxGasPrice: string; InflightCacheExpiry: string; RootSnoozeTime: string; }; //# sourceMappingURL=types.d.ts.map