/** * Get the maximum order of the items * @param items * @returns */ export declare const getHtmlMaxOrder: (items: T[]) => number; /** * Get the minimum order of the items * @param items - The items to get the minimum order * @returns The minimum order */ export declare const getHtmlMinOrder: (items: T[]) => number;