import type React from 'react'; import type { MovexClient } from 'movex'; import type { ResourceIdentifier, MovexDefinition } from 'movex-core-util'; type Props = React.PropsWithChildren<{ movexDefinition: MovexDefinition; rid: ResourceIdentifier; render: (boundResource: MovexClient.MovexBoundResource) => React.ReactNode; }>; export declare const MovexResourceBounder: React.FC; export {};