/** * Calculates the height of each block element within an article. * @returns An array containing the heights of all the block elements. */ export declare function getBlocksHeight(): number[]; /** * Calculates the offset top position of a block element in an HTML document. * @param sequenceNumber - The sequence number of the block element. * @returns The offset top position of the block element with the specified sequenceNumber. */ export declare function getBlockOffsetTop(sequenceNumber: number): number; /** * Calculates the offset top position of a article. * @returns The offset top position of the article. */ export declare const getArticleOffsetTop: () => number; //# sourceMappingURL=getBlocksHeight.d.ts.map