import { ComponentHierarchyTraversalElement, PropExtractorConfig } from '../types'; /** * Extracts the props of a React component given its name, fiber node, configuration and * ignore props. * @param param0 - The traversal element to extract properties from. * @param config - The configuration object for the prop extractor. * @returns An object containing the filtered props of the React component. */ export declare const extractProps: ({ elementName, fiberNode, ignoreProps, heapOptions }: ComponentHierarchyTraversalElement, config: PropExtractorConfig) => Record;