import type { UIElement } from '@instructure/shared-types'; /** * --- * category: utilities/DOM * --- * * Get the associated CSS properties and values for a * specified element * @module getCSSStyleDeclaration * * @param { Node | Window | React.ReactElement | React.Component | function } el - component or DOM node * @param { string | null | undefined } pseudoElt - A string specifying the pseudo-element to match. Omitted (or null ) for real elements. * @returns { CSSStyleDeclaration | undefined } The style declaration containing css properties and values for the element or undefined */ declare function getCSSStyleDeclaration(el?: UIElement, pseudoElt?: string | null): CSSStyleDeclaration | undefined; export default getCSSStyleDeclaration; export { getCSSStyleDeclaration }; //# sourceMappingURL=getCSSStyleDeclaration.d.ts.map