/** * @module kung-fu/components */ /** * Applies rotating list style types to nested unordered lists based on their nesting level * Only affects top-level lists (those not contained within list items) * * @export * @param {string} [selector='ul'] - CSS selector for list elements * @param {string[]} [order=['disc', 'circle', 'square']] - List style types to apply in sequence * @returns {void} * @example * // Apply default styling to all unordered lists * rotateListStyleType(); * * // Apply custom styling to specific lists with a class * rotateListStyleType('.custom-list', ['decimal', 'lower-alpha', 'lower-roman']); */ export declare const rotateListStyleType: (selector?: string, order?: string[]) => void;