/** * @author Kuitos * @since 2023-04-25 */ export declare function toArray(array: T | T[]): T[]; export declare function getContainerXPath(container: HTMLElement): string | void; export declare function performanceGetEntriesByName(markName: string, type?: string): PerformanceEntryList | null; export declare function performanceMark(markName: string): void; export declare function performanceMeasure(measureName: string, markName: string): void; export declare function getPureHTMLStringWithoutScripts(entry: string, fetch: typeof window.fetch): Promise;