/**
 * Gets the value for a style property
 * @param node  The DOM element
 * @param property  The style property
 * @returns The value of the style property
 */
export default function getStyle(node: Element, property?: string): string | CSSStyleDeclaration;
