import * as yup from 'yup'; import { RpcBlockHeader } from '../chain'; export type OnReorganizeChainRequest = undefined; export type OnReorganizeChainResponse = { oldHead: RpcBlockHeader; newHead: RpcBlockHeader; fork: RpcBlockHeader; }; export declare const OnReorganizeChainRequestSchema: yup.MixedSchema; export declare const OnReorganizeChainResponseSchema: yup.ObjectSchema; //# sourceMappingURL=onReorganizeChain.d.ts.map