/** * Find sibling elements of the current element include the current element. * * @param currentElement - The current element. * * @param selector - A CSS selector string. * * @returns An array of sibling elements include the current element. */ export declare const findSiblingElements: (currentElement: HTMLElement, selector: string) => HTMLElement[];