import { GraphQLClient } from 'graphql-request'; declare type Block = { number: number; timestamp: number; id: string; }; export declare const fetchOneDayBlock: (client: GraphQLClient) => Promise; export declare const fetchTwoDayBlock: (client: GraphQLClient) => Promise; export declare const fetchSevenDayBlock: (client: GraphQLClient) => Promise; export declare const fetchBlocksByNumbers: (client: GraphQLClient, blockNumbers: (number | string)[]) => Promise; export declare const fetchBlockByTimestamp: (client: GraphQLClient, timestamp: number | string) => Promise; export {};