import { Element } from "hast";
import { NormalizedOptions } from "./options";
import { Heading } from "./types";
/**
* Finds all HTML heading nodes (`
` through `
`)
*/
export declare function findHeadings(node: Element, options: NormalizedOptions): Heading[];