import type { FC, LegacyRef, ReactNode } from 'react'; import type { Selector } from '../observableInterfaces'; export type ShapeWithNew$ = Partial> & { [K in keyof T as K extends `$${string & K}` ? K : `$${string & K}`]?: Selector; } & { children?: Selector; }; export type BindKeys

= Record any; defaultValue?: any; }>; export type FCReactiveObject = { [K in keyof T]: FC>; }; export type FCReactive = P & FC & { ref?: LegacyRef

| undefined; }>; //# sourceMappingURL=reactInterfaces.d.ts.map