import { SubscriptionArgs, RawSubscriptionData, SubscriptionTopic } from "@onflow/typedefs"; import { BlockArgsDto } from "./types"; type BlockHeadersArgs = SubscriptionArgs; type BlockHeadersData = RawSubscriptionData; type BlockHeadersArgsDto = BlockArgsDto; type BlockHeadersDataDto = { id: string; parent_id: string; height: string; timestamp: string; parent_voter_signature: string; }; export declare const blockHeadersHandler: import("./types").SubscriptionHandler<{ Topic: SubscriptionTopic.BLOCK_HEADERS; Args: BlockHeadersArgs; Data: BlockHeadersData; ArgsDto: BlockHeadersArgsDto; DataDto: BlockHeadersDataDto; }>; export {};