import { CssSelectorGenerated, CssSelectorGeneratorOptions } from "./types.js"; /** * Get nth-of-type selector for an element. */ export declare function getElementNthOfTypeSelector(element: Element, _options?: CssSelectorGeneratorOptions): CssSelectorGenerated[]; /** * Get Nth-of-type selector matching all elements. */ export declare function getNthOfTypeSelector(elements: Element[], options?: CssSelectorGeneratorOptions): CssSelectorGenerated[];