export interface Options { [key: string]: any; } export type BundleType = 0 | 1; export type Type = string; export type Prop = any; export type ContextItem = any; export type HydratableInstance = any; export type PublicInstance = Instance | TextInstance; export type HostContext = Context; export type UpdatePayload = any; export type ChildSet = any; export type TimeoutHandle = any; export type NoTimeout = any; export interface Container extends Instance { } export interface TextInstance extends Instance { } export interface DeepArray extends Array> { } export type Path = string | number | DeepArray; export interface Props { [key: string]: Prop; } export interface Instance extends Node { } export interface Pkg { [key: string]: any; } export interface Context { [key: string]: ContextItem; } //# sourceMappingURL=types.d.ts.map