import type { RefObject } from 'react'; type Constructor = { new (): T; }; /** * Extract property names of `custom element` * NOTE: does not extract events and functions */ export declare const extractElementProps: (elementClass: Constructor) => Set; /** * React will try to `toString` all arguments that are provided. * This hook will set the property/function to the referenced element programmatically. */ export declare const useElementProps: (ref: RefObject, props?: Partial>, propMap?: Set) => void; export {}; //# sourceMappingURL=useElementProps.d.ts.map