import type { HybridObject } from 'react-native-nitro-modules'; export interface RiveRuntime extends HybridObject<{ ios: 'swift'; android: 'kotlin'; }> { initialize(): Promise; readonly isInitialized: boolean; readonly initError: string | undefined; }