import type { JCRNodeWrapper } from "org.jahia.services.content"; /** * Extracts the properties from a node * * @param node The node on which to extract the properties * @param props The name of the properties to extract * @returns An object containing the property values. * * If props is an array (even empty), only the specified properties will be returned. If props is * undefined, all properties will be returned through a Proxy object. */ export declare function getNodeProps>(node: JCRNodeWrapper, props?: string[]): T;