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