import { type ExpoBundledMediaRegistry } from '@ankhorage/expo-runtime/bundled-media'; import { type RuntimeRendererConfig } from '@ankhorage/runtime'; import React from 'react'; import { Text } from 'react-native'; export interface AnkhStudioProps { children: React.ReactNode; runtimeRegistry?: unknown; runtimeConfig?: unknown; bundledMediaRegistry?: ExpoBundledMediaRegistry; } export declare const AnkhStudio: ({ children, bundledMediaRegistry }: AnkhStudioProps) => React.CElement | React.FunctionComponentElement<{ value: RuntimeRendererConfig; children: React.ReactNode; }> | null; //# sourceMappingURL=AnkhStudio.d.ts.map