import type { UnknownRecord } from '../types'; import { type NativePropsBuilder, type PropsBuilderConfig } from './propsBuilder'; export declare function getCompoundComponentName(reactViewName: string, componentDisplayName: string): string; export declare function getPropsBuilder(compoundComponentName: string): NativePropsBuilder; export declare function registerComponentPropsBuilder
(componentName: string | RegExp | ((name: string) => boolean), config: PropsBuilderConfig
, options?: {
separatelyInterpolatedNestedProperties?: readonly string[];
}): void;
export declare function getSeparatelyInterpolatedNestedProperties(compoundComponentName: string): ReadonlySet