import * as yup from 'yup'; export type BlockIdentifier = { index: string; hash: string; }; export interface ChainInfo { currentBlockIdentifier: BlockIdentifier; genesisBlockIdentifier: BlockIdentifier; oldestBlockIdentifier: BlockIdentifier; currentBlockTimestamp: number; } export type GetChainInfoRequest = Record | undefined; export type GetChainInfoResponse = ChainInfo; export declare const GetChainInfoRequestSchema: yup.MixedSchema; export declare const GetChainInfoResponseSchema: yup.ObjectSchema; //# sourceMappingURL=getChainInfo.d.ts.map