/** * Shared helpers for element wrappers. */ export type ElementList = Element[]; export declare const toElementList: (input: Element | ElementList) => ElementList; export declare const applyAll: (elements: ElementList, action: (el: Element) => void) => void; /** @internal */ export declare const isHTMLElement: (element: Element | null | undefined) => element is HTMLElement; /** * Gets an element's inner size (content + padding, excluding border and margin). * * @internal */ export declare const getInnerSize: (element: Element | null | undefined, dimension: "width" | "height") => number; /** * Gets an element's outer size, optionally including margins. * * @internal */ export declare const getOuterSize: (element: Element | null | undefined, dimension: "width" | "height", includeMargin: boolean) => number; //# sourceMappingURL=shared.d.ts.map