import type { QueryInfo } from "../../types"; import { block } from "./block"; export type ArweaveBlocks = typeof block; export declare const blocksVars: ArweaveBlocksVars; export type ArweaveBlocksVars = { ids?: string; minHeight?: number; maxHeight?: number; pageSize?: number; after?: string; sort?: "ASC" | "DESC"; }; export declare const arweaveBlocksQuery: QueryInfo;