export type Size = 'width' | 'height'; interface MaxElement { text: string; width: number; } /** * * * @param elementRefs - A list of elements that should be considered to find the maximum * @param sizeProperty - The size property to be used as compared value * @returns MaxElement containing information regarding the found element */ export declare function getElementWithMaxTextSize(elementRefs: Element[], sizeProperty: Size): MaxElement; export {};