import type { App } from '../App'; import type { Node } from '../Node'; type AutomotiveFactory = (props: Record, app: App) => Node; declare const registry: Record; export declare function registerAutomotive(type: string, factory: AutomotiveFactory): void; declare function runFactory(factory: AutomotiveFactory, props: Record, app: App): Node; export declare function createAutomotiveFromJSON(type: string, props: Record, app: App): Node | null; export { registry, runFactory };