import { BeaconConfig } from "@lodestar/config"; import { capella } from "@lodestar/types"; import { Validator } from "@lodestar/types/phase0"; import { CachedBeaconStateCapella } from "../types.js"; export declare function processBlsToExecutionChange(state: CachedBeaconStateCapella, signedBlsToExecutionChange: capella.SignedBLSToExecutionChange): void; export declare function isValidBlsToExecutionChange(config: BeaconConfig, validator: Validator, signedBLSToExecutionChange: capella.SignedBLSToExecutionChange, verifySignature?: boolean): { valid: true; } | { valid: false; error: Error; }; //# sourceMappingURL=processBlsToExecutionChange.d.ts.map